UNDEFINED INDEX Error message - PHP Views : 210
Tagged in : PHP
Send mail vote down 0 vote down 0
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




    Login to add Comments .