Hi,
Have a piece of script that is meant to take a guest book entry and submit it to a msg.dat file..looks like this:
$filename="msg.dat";
$file=fopen($filename,'a');
fputs($file,"$message -- $name -- $email\n");
fclose($file);
However the msg.dat file (which is blank text file editable with Notepad etc)does not seem to be recording entries...I believe I need to set permissions in the dat file?
HELP from some WIZ required please.