Skip to content

Instantly share code, notes, and snippets.

@jzmwebdevelopment
Created September 2, 2011 01:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jzmwebdevelopment/1187752 to your computer and use it in GitHub Desktop.
Save jzmwebdevelopment/1187752 to your computer and use it in GitHub Desktop.
PHP Random Slideshow
<?php
$dir = 'catalog/view/theme/default/gallery/';
$files = glob($dir.'*.jpg');
shuffle($files);
?>
<div id="Box">
<div id="slideShow">
<ul>
<?php foreach( $files as $file) : ?>
<li><img width="370" height="480" alt="" src="<?=$file?>"/></li>
<?php endforeach; ?>
</ul>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment