|
Posted by sam on 12/26/06 16:27
HI ,
whats wrong with the following code:-
<?php
$myFile = "test.txt";
$fh = fopen($myFile, 'a');
$add="This new stuff /n";
fwrite($myFile,$add);
fclose($fh);
?>
When i run this it gave me the error:-
Warning: fwrite(): supplied argument is not a valid stream resource
Navigation:
[Reply to this message]
|