Quote:
Originally Posted by Belisarius
Here are some quick hints at debugging those error messages:
"on line 11" means, literally, that this particular error occured literally on the 11th line of the file "D:\wamp\www\inc\TMPh1hlhxx6mm.php". If we jump to that line, we see it is:
"Undefined index" means that in an array, you are attempting to use a key that does not exist. In this case, the array is "$_POST".
Here's something to think about. $_POST is filled with data when a form is submitted. What happens when you load you browse to the login page for the first time, before you've submitted any login information?
|
hi. i knew that submitted keyword was not recegnised when it was submitted. but i did not understand what you mean by
Quote:
|
What happens when you load you browse to the login page for the first time, before you've submitted any login information?
|
sorry. can you please tell me what you mean by that sentence if possible with an example?
thank you