It's the way you store it in the DB it you store it with carriage returns it will display with it otherwise PHP cant determine that it has it a way to accomplish this is on the form you have to insert the data use this for the field that carry the paragrahs
$data = ereg_replace("(\r\n|\n|\r)", "<br />", $form);
Hope that helps