I am showing a directory of files and I don't what all the files to
show on the screen. I was able to get the . and the .. not to show
with what I have below but there are some other files in there that look
like this mylist.confg. I don't want them to show in the directory
list. I tried && $files != "*.config" but this did not work .
Anybody have an suggestions
if ($handle = opendir('/path/to/list/directory')) {
while (false !== ($files = readdir($handle))) {
if ($files != "." && $files != "..") {
echo $files;
}
--
Best regards,
rdkurth mailto:[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php