Alright I have three forms, I want the first for input, the second to confirm and the third to send, but when this sends it only sends the endline comments. Any help?
FORM #1 [Input] -- input1.php
<html>
<head>
<title>Enter Customer Details</title>
<meta name="author" content="Chetan Ghedia">
<meta name="Version" content="1.1">
</head>
<body>
<center>
<h4>Checkout</h4>
<h3>Please fill out your details</h3>
<form method="post" action="confirm_details.php">
Enter Your First Name
<input type="text" name="fname"></input><br>
Enter Your Surname
<input type="text" name="sname"></input><br>
Enter Your Address
<input type="text" name="address"></input><br>
Enter Your Postcode
<input type="text" name="postcode"></input><br>
Enter Your Telephone Number
<input type="text" name="telephone"></input><br>
Enter Your Email
<input type="text" name="email"></input><br>
<input type="submit" name="submit" value="click"></input>
</form>
</body></html>
';
?>
FORM #2 [Confirmation] -- confirm_details.php
<html>
<head>
<title>Enter Customer Details</title>
<meta name="author" content="Chetan Ghedia">
<meta name="Version" content="1.1">
</head>
<body>
<center>
<h4>Confirm Details</h4>
<h3>Please check that the following details are correct</h3>
<form method="post" action="send.php">
<?php echo "$fname"; ?><br>
<?php echo "$sname"; ?><br>
<?php echo "$address"; ?><br>
<?php echo "$postcode"; ?><br>
<?php echo "$telephone"; ?><br>
<?php echo "$email"; ?><br>
<input type="submit" name="submit" value="click"></input>
</form>
</body></html>
FORM #3 [Send/Success] -- send.php
<html>
<head>
<title>Enter Customer Details</title>
<meta name="author" content="Chetan Ghedia">
<meta name="Version" content="1.1">
</head>
<body>
<center>
<h4>Congradulations</h4>
<h3>You are a new member!</h3>
<?php mail("mail@nibodesigns.com", "New Member", "New Member:/n/n/n$fname/n$sname/n$address/n$postcode/n$telephone/n$email/n")?>
</body>
</html>