/////////////////////////
The name is John.
John hates dogs.
Dogs must die.
/////////////////////////
Now I want to display that whole thing on my page(in an textarea of a form). This is my snippet.
<textarea name="info" rows="15" id="msg" cols="51" /> <?php echo $row['info']; ?> </textarea>It works great for one line but it doesnt read anymore. It stops when it gets to the whitespace. I've been looking for a solution on php.net but all I can find is the strip_whitespace. Below is an example of what it outputs on my page
////////////////////////////
The name is John.
////////////////////////////
That's all it outputs. Any would would be greatly appreciated.
