Hi guys,
I have a similar problem. Here is my "test.php" file:
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="test_process.php" method="post" name="form1">
<p>Email:
<input name="email" type="text">
</p>
<p>Password:
<input name="password" type="text" id="password">
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
</body>
And here is my "test.process.php" file:
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?
echo "<p>$email</p>";
echo "<p>$password</p>";
?>
</body>
When I enter stuff in test.php file and submit, I get nothing when submitted. Why not?
Please help..
Al