OK, here goes:
enterdetails.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 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>
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="inputtest.php">
<?php echo "<input type=\"hidden\" name=\"fname\" value='$fname' >"; ?>
<?php echo "<input type=\"hidden\" name=\"sname\" value='$sname' >"; ?>
<?php echo "<input type=\"hidden\" name=\"address\" value='$address'> "; ?>
<?php echo "<input type=\"hidden\" name=\"postcode\" value='$postcode' >"; ?>
<?php echo "<input type=\"hidden\" name=\"telephone\" value='$telephone' >"; ?>
<?php echo "<input type=\"hidden\" name=\"email\" value='$email'> "; ?>
Name: <?php echo "$sname"; ?><br>
address: <?php echo "$address"; ?><br>
postcode: <?php echo "$postcode"; ?><br>
tel: <?php echo "$telephone"; ?><br>
email: <?php echo "$email"; ?><br>
<h3>Please enter your card number</h3>
Enter Your FirstName
<input type="text" name="ccard"></input><br>
<input type="submit" name="submit" value="click"></input>
</form>
</body></html>
inputtest.php:
<?
echo $fname;
echo $sname;
echo $address;
echo $postcode;
echo $telephone;
echo $email;
?>
<html>
</html>
This should work. (It does here..)