View Single Post
Old 03-19-2008, 03:41 PM   #6 (permalink)
hasansahip
Recruit
 
Join Date: Mar 2008
Posts: 4
hasansahip is on a distinguished road
thanks

Quote:
Originally Posted by Belisarius View Post
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

Last edited by Belisarius; 03-19-2008 at 05:25 PM.
hasansahip is offline   Reply With Quote