Help!!

I need some help.

My error is:
Parse error: syntax error, unexpected T_VARIABLE in /home/briman/public_html/dfyanimation.com/html-editor/files/LB.php on line 4

My code is:
[php]<?php
$dir = opendir("./db/");
while ($file = readdir($dir)) {
$file = readdir($dir);
echo file_get_contents("./db/".$file) . “
”;
}
?>
[/php]

Thanks!

Hmm… lets start over:

[php]

$dir = opendir("./db");
while (FALSE !== ($file = readdir($dir))) {
echo file_get_contents("./db/" . $file);
}[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service