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
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/>";
}
This is our situation and we're happy to be here,
I wouldn't change this place for anything.
put it as a .php page or what?
Want to hide these adverts? Register an account for free!