I'm getting this error:
Warning: fwrite(): supplied argument is not a valid stream resource in /mypath on line 1222
My code is this:
The error text also appears below the error. The CHMOD on the directory is 777.
Am I overlooking somethng?
Warning: fwrite(): supplied argument is not a valid stream resource in /mypath on line 1222
My code is this:
Code:
$File = "custom.css";
$Handle = fopen($File, 'w') or die("can't open file");
if (fwrite($Handle, $css_file) === FALSE)
{
echo "Cannot write to file ($File)";
exit;
}
Am I overlooking somethng?
Comment