Dalziel
05-02-2003, 01:56 PM
I use
if(!file_exists("file.txt"))
{
$fp = fopen("file.txt", "w");
fwrite($fp, "0");
fclose($fp);
}
Is there any way I could do that and CHMOD the file I created?
if(!file_exists("file.txt"))
{
$fp = fopen("file.txt", "w");
fwrite($fp, "0");
fclose($fp);
}
Is there any way I could do that and CHMOD the file I created?