Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Last active February 13, 2024 07:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taniarascia/09903dc7c30929b5826a to your computer and use it in GitHub Desktop.
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