I can write to this textfile:
$fp = fopen("./testfile.txt"," w");
but not this html file:
$fp = fopen("./testfile.html", "w");
How do I get permission to write to a html file?
Windows XP, IIS localhost
Thanks
$fp = fopen("./testfile.txt"," w");
but not this html file:
$fp = fopen("./testfile.html", "w");
How do I get permission to write to a html file?
Windows XP, IIS localhost
Thanks
Comment