this the code for my 2 pages
<html>
<head>
<title>Fitness Insertia - The constant moving energy</title>
</head>
<body>
<center>
<h1>Test Login Screen</h1>
<br />
<br />
<br />
<br />
<form action="home.php" method="GET">
<table cellspacing="0", cellpadding="0", border="1", width="100">
<tr>
<td width="30">Username</td>
<td width="70"><input type="text" name="user" size="30" maxlength="30" /></td>
</tr>
<tr>
<td width="30">Password</td>
<td width="70"><input type="password" name="pass" size="30" maxlength="30" value="password" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="sumbit" value="login" /></td>
</tr>
</table>
</form>
</center>
</body>
</html>
<html>
<head>
<title>test login</title>
</head>
<body>
<center>
<?php
print "$username";
?>
</center>
</body>
</htm>
for some reason php does make a variable $username with the value of what was entered in that field from the previous page can help one tell me what I am doing wrong. Thanks alot.