$file_list = array();
$dir = opendir($doc_dir);
while (false !== ($file = readdir($dir))) {
if (($file != ".") && ($file != ".."))
$file_list[$file] = $file; <---------------<<<<<
}Todd
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

