I have my user fill in an html form then it sends it to submit.php using $FormContents = $_Post['Form']; Code (markup): But when I display it ( what the user entered ), it will take all the paragraphs and formatting out of what the user submitted. Any suggestions?
Your problem comes down to this: when the user enters the text, the form uses newline characters when the user presses enter. When you return the newline character to the browser, it's ignored as a new line character means nothing in HTML. Try: $FormContents = nl2br( $_Post['Form'] ); instead.