Make a page that puts image tags around everything in one folder?
E.g if i had all my images at /images/ross and i want every single image to appear on the site so i can just scroll through and choose what i want how would i do this?
Ross
Printable View
Make a page that puts image tags around everything in one folder?
E.g if i had all my images at /images/ross and i want every single image to appear on the site so i can just scroll through and choose what i want how would i do this?
Ross
should do itPHP Code:$folder = new RecursiveDirectoryIterator('path/to/folder');
foreach (new RecursiveIteratorIterator($folder) as $filename => $file) {
echo "<img src=\"{$filename}\" /><br/>";
}
put it as a .php page or what?