I have a samll problem with some PHP code. Basically I want to display two variables which it is doing perfectly but I want a line break in between the two. Hoe do I do this? The code is:
$message = $text_message;
$message = wordwrap($message, 50);
$message = $title.$message."\n\nMany thanks.
I want to add the line break between the $title and $message. Any help would be great.