crel
09-03-2005, 06:10 PM
simple php code, working at every host, but here i have problems :(, maybe any 1 can help.
code:
-------------------------------------------
$filename = "mail.txt";
if(!file_exists($filename))
{
echo ("create file:$filename
");
$fp = @fopen($filename, "w");
fputs ($fp, $killmail);
@fclose ($fp);
}
-------------------------------------------
and errormessage what showed to me with fputs and fwrite functions:
Warning: fputs(): supplied argument is not a valid stream resource in /hsphere/local/home/..../eve-lc.com/write.php on line 12
how solve problem ?
code:
-------------------------------------------
$filename = "mail.txt";
if(!file_exists($filename))
{
echo ("create file:$filename
");
$fp = @fopen($filename, "w");
fputs ($fp, $killmail);
@fclose ($fp);
}
-------------------------------------------
and errormessage what showed to me with fputs and fwrite functions:
Warning: fputs(): supplied argument is not a valid stream resource in /hsphere/local/home/..../eve-lc.com/write.php on line 12
how solve problem ?