05-04-2009, 05:58 PM
|
#2 (permalink)
|
|
The Gregarious
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
|
It works for me.
But on line 75, I don't know what characters you are using, but those are not double quotes..
Code:
$filess=fopen(”menu.txt”,”w”) or die(”myfile.txt does not exist!”);
It should be:
Code:
$filess=fopen("menu.txt","w") or die("myfile.txt does not exist!");
|
|
|
|