I have a textarea for writting memo and it would saved/updated to the memo file but after I posted it tried to add "\" to some of the characters like " to \" and \ to \. below is my code
<?
if ($REQUEST_METHOD == "POST")
{
$fp = fopen("memo/" . $File, "w");
fwrite($fp, $Content);
fclose($fp);
}
?>
<form action="OpenMemoFile.php" Method="POST">
<TEXTAREA name="Content" rows="21" cols="70">
<?
readfile("memo/" . $File);
?>
</TEXTAREA><BR><BR>
<input type="Submit" value="Update">
<input type="hidden" name="File" value="<?=$File?>">
</form>