I have a feedback form that is an html page with a form in it and it goes to a php page that send the information to my email address.
Below is the code for the php page, how would I be able to drop each option onto a new line instead of having them all line up on the same line?
I can image this will be a super quick answer.PHP Code:<?php
$to = "xxxxx@xxxxxx.com";
$subject = "Request";
$message = "Artist: " . $_POST["artist"] ." Title: " . $_POST["title"] ." Comment: " . $_POST["comment"] ."\r\n";
$sent = mail($to, $subject, $message) ;
?>



Reply With Quote


Bookmarks