since new lines in html are not rendered, you need to convert them to <br>
nl2br() is handy for that.
if you want multiple spaces and tabs to be preserved to, use str_replace
str_replace(' ', ' ', $text);
str_replace("\t", ' ', $text);
you could also use <pre> tags if you want....