here is an example of the code i normally use:
CODE
<?php
if (isset($_POST['submit'])) { // $_POST['submit'] = the submit BUTTON
// begin processing the login information.
}else{
//begin form
}
?>
if (isset($_POST['submit'])) { // $_POST['submit'] = the submit BUTTON
// begin processing the login information.
}else{
//begin form
}
?>
Now, because people like me normally DON'T use the button lol, I was wondering what another good method would be to do all this. You know what I mean?