Weird question here. I have a form that uses a textarea tag for the address line and I'm trying to pass that value as it is entered to another page. For example, say I enter into the textarea:
Notice the line break after "St". Now, if I pass this value via post to my second page and echo it, it comes out as:Code:1234 Any St Unit 123
However, if I print_r($_POST), it seems to remember the line break as such:Code:1234 Any St Unit 123
How can I force the page to display the line break?Code:Array ( [Address] => 1234 Any St Unit 123 )



LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks