a.beam.reach Posted April 26, 2007 Share Posted April 26, 2007 I would like to write a script that displays all photos (jpg) from a folder. I want to be able to load photos into a folder without renaming them and have a script sort them and display them alphabetically. Can someone point me in the right direction? Thanks in advance for any help offered! Quote Link to comment https://forums.phpfreaks.com/topic/48811-solved-displaying-all-pics-in-a-folder/ Share on other sites More sharing options...
Psycho Posted April 26, 2007 Share Posted April 26, 2007 Here is a tutorial on how to create a directory list in PHP, it would be pretty smple to modify it to just search for jpg images and display them. http://www.spoono.com/php/tutorials/tutorial.php?id=10 Quote Link to comment https://forums.phpfreaks.com/topic/48811-solved-displaying-all-pics-in-a-folder/#findComment-239225 Share on other sites More sharing options...
taith Posted April 26, 2007 Share Posted April 26, 2007 $array=glob('images/*'); foreach($array as $v){ echo '<img src="'.$v.'">'; } Quote Link to comment https://forums.phpfreaks.com/topic/48811-solved-displaying-all-pics-in-a-folder/#findComment-239238 Share on other sites More sharing options...
a.beam.reach Posted April 26, 2007 Author Share Posted April 26, 2007 Thank you for your help. Is the first line where I point to the image folder? I don't get any errors but also don't get any results. $array=glob('http://www.mysite.com/images/*'); foreach($array as $v){ echo '<img src="'.$v.'">'; } Quote Link to comment https://forums.phpfreaks.com/topic/48811-solved-displaying-all-pics-in-a-folder/#findComment-239298 Share on other sites More sharing options...
Psycho Posted April 26, 2007 Share Posted April 26, 2007 You need to put the relative path to your images from where the php file is running. It cannot read a directory through http. taith, I had never seen that before, very handy indeed! One thing though, if you want to have the images in alphabetical order you will want to use that foreach loop to dump them into an array and then sort the array. Quote Link to comment https://forums.phpfreaks.com/topic/48811-solved-displaying-all-pics-in-a-folder/#findComment-239328 Share on other sites More sharing options...
a.beam.reach Posted April 26, 2007 Author Share Posted April 26, 2007 Incredible. Now I'll play around with the formatting. This forum is great. Friendly help in minutes! I hope my learning curve will be steep so I can help out others soon. Thanks, Trevor Quote Link to comment https://forums.phpfreaks.com/topic/48811-solved-displaying-all-pics-in-a-folder/#findComment-239372 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.