newbie with question
Posted: Mon Jun 14, 2010 6:14 am
i have wrote a php form for my business, it's an estimate with name, number, make/model of vehicle, and message. it emails the form to me, but what i'm getting is the number,make, and message in 1 line with no spaces. what i want is it to be on seperate lines. can someone look at this and tell me what's wrong
http://customcreationz.atbh.us/estimate.html
http://customcreationz.atbh.us/estimate.html
Code: Select all
<?php
$name = $_REQUEST['name'] ;
$message1 = $_REQUEST['message1'] ;
$message2 = $_REQUEST['message2'] ;
$message = $_REQUEST['message'] ;
mail( "customcreationz@charter.net", "Estimate Form",
$message1. $message2. $message, "From: $name" );
header( "Location: http://www.customcreationz.atbh.us/thanks.html" );
?>