Hi Friends!
I want To Say One Important Matter!
All Persons Know That UC-WEB Browser Was Proxy Browser! That is Designed for user benifit! Not for web/wap master!
In That Uc-Web ads are shown but Most Ad Networks are Not Count that clicks!
My Vserv Manager also Says that uc-browser clicks not count!
So i am sharing simple php code for Banning "UC-WEB Browser!"
Thank You!
I want To Say One Important Matter!
All Persons Know That UC-WEB Browser Was Proxy Browser! That is Designed for user benifit! Not for web/wap master!
In That Uc-Web ads are shown but Most Ad Networks are Not Count that clicks!
My Vserv Manager also Says that uc-browser clicks not count!
So i am sharing simple php code for Banning "UC-WEB Browser!"
Thank You!
PHP Code:
<?
$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
if(stripos($ua,'ucbrowser') !== false OR stripos($ua,'ucweb') !== false)
{
// Your UcWeb Ban Note Below!
echo 'Non Support Browser';
}
else
{
// Your Site Main Code Below!
}
?>
Comment