Hi all i am making a form which allows people to enter details which then follows into a page which shows what they have entered, but i only got the first three fields displayed:
<?php
echo '
<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 FirstName
<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>
';
?>
that is the input form
<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>
<?php echo "$fname"; ?><br>
<?php echo "$sname"; ?><br>
<?php echo "$address"; ?><br>
<?php echo "$postcode"; ?><br>
<?php echo "$telephone"; ?><br>
<?php echo "$email"; ?><br>
</body></html>
this is the display form, i only get upto the address being displayed, the url is http://meglos.lgu.ac.uk/~cghe11/testv1/enterdetail.php
anyone have any idea why this is doing this?
many thanks
cenath