iggy407 Posted November 23, 2011 Share Posted November 23, 2011 I am new to php and I have a form on my website, the form works correctly the only issue is with the variable $message it gives me all the information from the form as one long sentence and I want to break up each question as a new line, but can't seem to solve this any idea's... $firstname= $_POST['firstname']; $lastname= $_POST['lastname']; $email= $_POST['email']; $from=$_POST["confirmemail"]; $phonenumber= $_POST["phonenumber"]; $message="First Name: $firstname". "Last Name: $lastname". "Email: $email". "Phone number: $phonenumber"; mail("[email protected]","Tenant-Buyer Form",$message,"From: $from \n"); echo "Message Sent"; Quote Link to comment https://forums.phpfreaks.com/topic/251699-mail-function-issues/ Share on other sites More sharing options...
Pikachu2000 Posted November 23, 2011 Share Posted November 23, 2011 Just need to add a linefeed after each section. Well, theoretically anyhow. See if this works. $message="First Name: $firstname\n". "Last Name: $lastname\n". "Email: $email\n". "Phone number: $phonenumber\n"; Quote Link to comment https://forums.phpfreaks.com/topic/251699-mail-function-issues/#findComment-1290833 Share on other sites More sharing options...
iggy407 Posted November 23, 2011 Author Share Posted November 23, 2011 Thank you very much that solved the problem. Quote Link to comment https://forums.phpfreaks.com/topic/251699-mail-function-issues/#findComment-1290837 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.