Hi,
I am getting the following error:
Notice: Undefined index: ALL_HTTP in C:\xampp\htdocs\JassimRahma\app\detect.php on line 118
here is the code:
if(in_array($mobile_ua,$mobile_agents)){
$mobile_browser++;
}
if (strpos(strtolower($_SERVER['ALL_HTTP']),'OperaMini')>0) {
$mobile_browser++;
}
if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'iemobile')>0) {
$mobile_browser++;
}
if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'windows')>0) {
$mobile_browser=0;
}
Line 118 is:
if (strpos(strtolower($_SERVER['ALL_HTTP']),'OperaMini')>0) {
Kindly help...