WapMasters i want mobile detector code so that site should run only on mobile not on pc. Plzzzzz help
Wanted mobile detector code
Collapse
X
-
Originally posted by zong11 View PostWapMasters i want mobile detector code so that site should run only on mobile not on pc. Plzzzzz help
-
PHP Code:<?php
//////GYSMS.com Browser Detection
$mobile_browser = '0';
if(preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wa p|phone)/i',
strtolower($_SERVER['HTTP_USER_AGENT']))){
$mobile_browser++;
}
if((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml')>0) or
((isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE'])))){
$mobile_browser++;
}
$mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4));
$mobile_agents = array(
'w3c ','acs-','alav','alca','amoi','audi','avan','benq','bird' ,'blac',
'blaz','brew','cell','cldc','cmd-','dang','doco','eric','hipt','inno',
'ipaq','java','jigs','kddi','keji','leno','lg-c','lg-d','lg-g','lge-',
'maui','maxo','midp','mits','mmef','mobi','mot-','moto','mwbp','nec-',
'newt','noki','oper','palm','pana','pant','phil',' play','port','prox',
'qwap','sage','sams','sany','sch-','sec-','send','seri','sgh-','shar',
'sie-','siem','smal','smar','sony','sph-','symb','t-mo','teli','tim-',
'tosh','tsm-','upg1','upsi','vk-v','voda','wap-','wapa','wapi','wapp',
'wapr','webc','winw','winw','xda','xda-');
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']),'windows')>0) {
$mobile_browser=0;
}
if($mobile_browser>0){
header("Location: http://www.yourmobilesite.com");
}
else{
header("Location: http://www.yoursite.com/notphone.php");
}
?>
i am using on all my sites and working very well..
check demo at adcell.mobi from ur mob and pcLast edited by irfiii; 03.12.11, 15:45.Free Web Hosting @HostersPoint.com
php Hosting with Web Builder
Buy - Sell ADs
ADMOLA ADs Network
Monetize Your Site Traffic
Comment
-
Originally posted by irfiii View PostAdded after 2 minutes:
i am using on all my sites and working very well..
check demo at adcell.mobi from ur mob and pc
Comment
-
ohhh Really?
thanks for suggestion.. i will change it todayFree Web Hosting @HostersPoint.com
php Hosting with Web Builder
Buy - Sell ADs
ADMOLA ADs Network
Monetize Your Site Traffic
Comment
-
Originally posted by irfiii View PostPHP Code:<?php
//////GYSMS.com Browser Detection
$mobile_browser = '0';
if(preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wa p|phone)/i',
strtolower($_SERVER['HTTP_USER_AGENT']))){
$mobile_browser++;
}
if((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml')>0) or
((isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE'])))){
$mobile_browser++;
}
$mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4));
$mobile_agents = array(
'w3c ','acs-','alav','alca','amoi','audi','avan','benq','bird' ,'blac',
'blaz','brew','cell','cldc','cmd-','dang','doco','eric','hipt','inno',
'ipaq','java','jigs','kddi','keji','leno','lg-c','lg-d','lg-g','lge-',
'maui','maxo','midp','mits','mmef','mobi','mot-','moto','mwbp','nec-',
'newt','noki','oper','palm','pana','pant','phil',' play','port','prox',
'qwap','sage','sams','sany','sch-','sec-','send','seri','sgh-','shar',
'sie-','siem','smal','smar','sony','sph-','symb','t-mo','teli','tim-',
'tosh','tsm-','upg1','upsi','vk-v','voda','wap-','wapa','wapi','wapp',
'wapr','webc','winw','winw','xda','xda-');
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']),'windows')>0) {
$mobile_browser=0;
}
if($mobile_browser>0){
header("Location: http://www.yourmobilesite.com");
}
else{
header("Location: http://www.yoursite.com/notphone.php");
}
?>
i am using on all my sites and working very well..
check demo at adcell.mobi from ur mob and pc
PHP Code:if (strpos(strtolower($_SERVER['ALL_HTTP']),'Opera Mini')>0) {
$mobile_browser++;
}
PHP Code://...
strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml')>0)
//...
<!DOCTYPE html PUBLIC "-//WAPFORUM.RS
Comment
-
may be wrong but it work fine on opera for me..Free Web Hosting @HostersPoint.com
php Hosting with Web Builder
Buy - Sell ADs
ADMOLA ADs Network
Monetize Your Site Traffic
Comment
Comment