View Single Post
Old 12-27-2011, 01:16 AM   PM User | #2
BluePanther
Senior Coder

 
Join Date: Jul 2011
Posts: 1,226
Thanks: 3
Thanked 171 Times in 171 Posts
BluePanther is on a distinguished road
Quote:
Originally Posted by Vernier View Post
Hiya, how do i put about a thousand images that are in a directory on my server into a table on my webpage? Thanks guys!

~ David
Using PHP .

Specifically, scandir() or glob() are the functions you'd want to consider. You should post in the PHP category if you come across some more problems - a simple Google search will yield some results.
__________________
Useful function to retrieve difference in times
The best PHP resource
A good PHP FAQ
PLEASE remember to wrap your code in [PHP] tags.
PHP Code:
// Replace this
if(isset($_POST['submitButton']))
// With this
if(!empty($_POST))
// Then check for values/forms. Some IE versions don't send the submit button 
Quote:
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.
BluePanther is offline   Reply With Quote