Skip to content

Instantly share code, notes, and snippets.

@NuckChorris
Created July 23, 2013 12:01
Show Gist options
  • Select an option

  • Save NuckChorris/6061845 to your computer and use it in GitHub Desktop.

Select an option

Save NuckChorris/6061845 to your computer and use it in GitHub Desktop.
<?php
$images = array(
'img/2.png',
'img/3.png',
'img/4.png',
'img/5.png',
'img/6.png',
'img/7.png',
'img/8.png',
'img/9.png',
'img/10.png'
);
if (headers_sent() === false) {
header('Location: ' . $images[array_rand($images)], true, 303);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment