If I put the following script in a .php file it would work but if I put it
in an .html file doesn't work, why? script tag is only used in .html file.
<script language = "php">
echo "<ul>";
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>";
</script>
-Pooya
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php