i create project for customer.
when i run the project in wamp server i can view project correctly , but when costumer running project in our wamp server face this error ,
undefined index : Name in ~\order.php on line 12
undefined index : Name in ~\order.php on line 13
and line 12 and 13 is :
$Name = $_REQUEST['Name'];
$PhoneNo = $_REQUEST['PhoneNo'];
i want know that how i can view this error in my wamp server.
withal i replace code with :
if(isset($_REQUEST)){
$Name = $_REQUEST['Name'];
$PhoneNo = $_REQUEST['PhoneNo'];
}
but costumer so face this error .
i way that i face this error with setting php.ini
withal part of my php.ini is :
; - error_reporting = E_NOTICE
thanks.