Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Last active February 13, 2024 07:54
Show Gist options
  • Select an option

  • Save taniarascia/09903dc7c30929b5826a to your computer and use it in GitHub Desktop.

Select an option

Save taniarascia/09903dc7c30929b5826a to your computer and use it in GitHub Desktop.
Call random image
<?php
$random = rand(0, 2);
$picture = array(
'pic.jpg',
'other-pic.png',
'something.gif'
);
?>
<img src="<?php echo $picture[$random];?>"></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment