I know this is a simple problem... but can someone help me the trees for the forest.
I have a form and page which processes that form
The form being "login.php"
<form method="post" action="process_login.php">
Username: <input type="text" size="20" name="username"> <p>
Password: <input type="text" size="20" name="password"> <p>
<input type="submit" name="submit">
</form>
And the part in the 'process_login.php'
$local_un = $POST[username];
$local_pw = $POST[password];
print($local_un . " is the username and " . $local_pw . " is the password");
All im trying to do is collect the form variables and put display them in process_login.php
What am i overseeing?
Your help is greatly appreciated!