I have a form that asks to enter one or more paragraphs The problem is when you submit it, if you have a line break, it adds "rn" instead of "/r/n" I am not cleaning the variable at all... here is a simple version of the script PHP: --------- if(!isset($_POST[submit])) { echo ""; echo "$getmain3[paragraph]"; //$getmain3[paragraph] is defined earlier in the code echo ""; echo ""; } else { echo $_POST['paragraph']; } --------- So for exapmle if i type in the following: "Line Beak Test" The output ($_POST['paragraph']) is equal to: "linernbreakrntest" with no slashes Thanks in advance for any help.
More...