You can split your text on every new line using [man]explode[/man]. If you need only first two lines you can do it like this:
list($title,$description,$content) = explode("\n",$text,3);
$content will have the rest of the text even if there are more new lines in it,because of the limit of three elements.