I am trying to pass values between pages using some VERY simple PHP but the values entered on the first screen is not passed over. I am using my test server running IIS 1on my local PC .
Any help would be appreciated
Code entered
(1) Main screen
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="Answer.php" method="get" name="TEst Form" id="TEst Form">
<p>What is your name ?
<input name="Author" type="text" >
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
<p> </p>
<p> </p>
</form>
</body>
</html>
(2) Answer screen:
<html>
<head>
<title>This is the ANSWER</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
The name you entered was
<?php
echo $Author;
?>
<B>Correct !!</B>
</body>
</html>