View Single Post
Old 05-04-2009, 05:58 PM   #2 (permalink)
allworknoplay
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

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!");
allworknoplay is offline  
Reply With Quote