This is my simple log in page
<html><head><title>Games Login Page</title>
<style type = "text/css">
body { background-color: lightblue; }
</style></head>
<body>
Please enter your username and password here.
<form action = "test.php" method="post">
Username (Callsign):
<br>
<input type="text" name = "user">
<br><br>
Password: <br>
<input type = "text" name = "pswd" maxlenght = "9">
<input type = "submit" value = "log In">
</form>
</body></html>
here is my php page
<html><head><title>Test</title></head>
<body>
<?php
echo ("hi <br>");
echo ($user);
?>
</body></html>
<html><head><title>Games Login Page</title>
<style type = "text/css">
body { background-color: lightblue; }
</style></head>
<body>
Please enter your username and password here.
<form action = "test.php" method="post">
Username (Callsign):
<br>
<input type="text" name = "user">
<br><br>
Password: <br>
<input type = "text" name = "pswd" maxlenght = "9">
<input type = "submit" value = "log In">
</form>
</body></html>
here is my php page
<html><head><title>Test</title></head>
<body>
<?php
echo ("hi <br>");
echo ($user);
?>
</body></html>