you could do this:
$statement .= "first string<br>";
$statement .= "second string<br>";
$statement .= "and so on...";
echo $statement ;
or this
echo "first string<br>";
echo "second string<br>";
echo "and so on...";
this will print out the following:
first string
second string
and so on...
hope this helps?