|
|
UNDEFINED INDEX Error message - PHP
|
Views : 210
|
|
Tagged in : PHP
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
UNDEFINED INDEX Error message
"Undefined index" means the variable you are trying to use doesn't exist.
So always use isset function to check whether the variable you are using is set or not.
if(isset($_POST['password'])
$pass=$_POST["password"]; |
|
By - Rekha, On - 2010-03-26 |
|
|
|