It's been some time since I've used PHP and I've ran into a formatting issue in the body of an email I'm trying to send.
The email works and the data is passed just fine but it all ends up on one line.
What is the correct syntax for inserting a line break between my two html form values after they are passed to my php mailer?
$message = $HTTP_POST_VARS["name"]."<br/>";
$message .= $HTTP_POST_VARS["address"];
Any help is very much appreciated
The email works and the data is passed just fine but it all ends up on one line.
What is the correct syntax for inserting a line break between my two html form values after they are passed to my php mailer?
$message = $HTTP_POST_VARS["name"]."<br/>";
$message .= $HTTP_POST_VARS["address"];
Any help is very much appreciated