|
I am just guessing here but I suspect the problem might be associated with register_globals being off. If the script is trying to view the contents of the form variables using just something like $username and $password, might try $_POST['username'] and $_POST['password'] instead. Be sure to use whatever the form is using.
|