> I did try going else { print "<a href="$file">$file</a><br > />\n"; } but all I get is PHP errors doing this until the double quote > is removed, any help in this would be great.
This would work: print "<a href=\"$file\">"; and so would: print "<a href='$file'>"; or even: print <<<END <a href="$file"> END; But you really should have checked the manual first... http://www.php.net/print -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php