/ Published in: PHP
It gets images randomly from folder that you've pointed.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php /********************************************** * Yazar : Richard Harris * Web : www.rtharris.com * Posta : [email protected] * Tarih : 16/02/06 * Kullanım : * <img src=img.php> * <img src=img.php?folder=images2/> ***********************************************/ if($_GET['folder']){ $folder=$_GET['folder']; }else{ $folder='/images/'; } //Selected Folder Name $path = $_SERVER['DOCUMENT_ROOT']."/".$folder; if ($file != "." && $file != "..") { } } } ?> Usage : It's very easy to use. Just copy the code to a new php file and save it "randomImages.php". Then where ever you would like to use and show your random images, use this way and don't forget to add folder name to a string. <img src=randomImages.php?folder=randomFolder02/>