So ive got a form, but when I add extra lines, they dont appear on the next page, example:
My input:
Code:
The cow said moo
And the dog barked
Result:
Code:
The cow said moo And the dog barked
How can I modify it so it doesnt remove the line breaks? Heres the code for fields and some PHP strip stuff:
Code:
$subject = strip_tags($_POST['subject']);
$msgtext = strip_tags($_POST['msgtext']);
<textarea name='msgtext' cols='53' rows='7'></textarea>
<input type='text' name='subject' size='70' maxlength='75' value=''>