I have a text file, i can open it and read it with php (version 4.04+ on windows), I try this simple function:
<?
$path = "album.txt";
$fd = fopen($path, "rb");
$test = fread($fp, filesize($path));
fclose($fd);
?>
and I have an error message -->Warning: Supplied argument is not a valid File-Handle resource in C:\apache\htdocs\test\index.php on line 4
god dawn it!!!!