I put this in the body of an html file:

<?php
if ($handle = opendir('.')) {
   while (false !== ($file = readdir($handle))) {
       if ($file != "." && $file != ".." && eregi('\.html$', $file)) {
           echo "<li><a href=\"$file\"><font color=\"#CC0000\">$file</

font></a></li><br>";
       }
   }
   closedir($handle);
}

echo "</ul>";
?>

the output page contains :

$file
"; } } closedir($handle); } echo "
"; ?>

I don't understand why.

"Daniel Clark" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Can you post the code and error.
>
>
> >>I took out the scrip tags and put in <?php in the beginning and ?>  at
the
> >>end, but it returns this:
> >>
> >>$file
> >>"; } } closedir($handle); } echo "
> >>"; ?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to