this is my error: Warning: 1 is not a valid Directory resource in /www/groupvertical/redhandgroup/index.php on line 34
is there anyplace that helps you with errors?
<?php
echo" <table width=\"185\"><tr><td>";
$directory ="http://groupvertical.com/redhandgroup/colorbooksspring/";
$currfile= "";
$mydirectory = "/home/groupvertical/www/redhandgroup/colorbooksspring/";
$handle = opendir("$mydirectory");
while ($currfile = readdir($handle))
{
//echo "<a href=\"$directory$currfile\">$currfile</a>";
echo "<br>";
closedir($handle);
}
echo "</tr></td></table>";
?>
is there anyplace that helps you with errors?