I have a sloppy, insecure script that does this posted on the web, which I use at home to make pages for my personal homepage: http://kimbriggs.com/computers/computer-software/create-html-table.txt You seem to be passing variables programmatically. This is how I use it http://kimbriggs.com/computers/computer-software/create-html-table.html cheers, KB On 4/25/05, Jason Barnett <jason.barnett@xxxxxxxxxxxxx> wrote: > Jay Blanchard wrote: > > [snip] > > Can PHP generate an array based on file names in a folder? > > > > For example, if I have a folder called "photos" that includes three > > files -- tree.jpg, house.jpg and boat.jpg -- can PHP "look" at the file > > and generate a variable $photos= array ("tree", "house","boat"). Any > > ideas for how to "sniff" out a folder to determine how many files are in > > it and then create an array with the file names in it? > > [/snip] > > > > Start with http://www.php.net/readdir > > Yep. > > <?php > > $dp = fopen('/path/to/dir', 'r'); > > while(false !== $files[] = readdir($dp)) {} > > closedir($dp); > $str = implode('', $files); > var_dump($str); > > ?> > > > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php