Hi im making a file upload site. Once the files are uploaded (into the upload folder), is there an easy way to get all the files in the upload folder printed on a page, without putting links on the actual page?
PHP5: [man]scandir[/man] PHP4: [man]opendir[/man] [man]readdir[/man]
Also, for PHP4 and 5: [man]glob/man
<?php foreach (glob("*.gif") as $filename) { echo $filename."\n"; } ?> try this code to retrieve all the gif images.