Printing blank space from MySQL through PHP?

I'm trying to print blank space from mysql by using php. So basically in short I got a text area where a user submits text, when they do a cartridge return it shows exactly as it was typed in from the form to MySQL but when I print it with PHP the cartridge returns disappear and it fuses the text in one big block of text.

Here's a quick example of what I mean:

Input form and MySQL show this:

TEST

TEST

PHP shows it as this:

TEST TEST

How do I get cartridge returns to appear from MySQL database using PHP excluding coding options like /n or <p> or <br/>?
 
Back
Top