Forum Moderators: coopster
FirstNameLastNameAddressCityStateZip
I would like it to appear like this
FirstName
LastName
Address
City
State
Zip
Here's part of my script:
$First_Name = $_POST['First_Name'];
$Last_Name = $_POST['Last_Name'] ;
$Address = $_POST['Address'] ;
$City = $_POST['City'] ;
$State_or_Province = $_POST['State_or_Province'] ;
$Postal_Code = $_POST['Postal_Code'] ;
I've heard you can use a /n at the end of the line, but every time I do it I get a parse error. Where exactly in each line should I put the /n, or is there anything else I can use? Please help! Thx.