hi i am unable to post msg to this to a text file
Pleae
<?php
$filename = "message2.txt";
$messag = stripslashes($posttext);
$cnt3 = "Message: $messag<br>\n";
$filed = @fopen($filename, "a+");
@fwrite($filed, "$cnt3");
@fclose($filed);
$msg = "<p>Data Input complete</P>";
?>