friends plz post all the proxy sites and emulater that you know so that i can block users using fake id in my site i use block php
PHP Code:
<?php
$mobile = "blocked2.php";
$text = $_SERVER['HTTP_USER_AGENT'];
$var[0] = 'Nokia6233';
$var[1] = 'Nokia6233';
$var[2] = 'anonymouse.org';
$var[3] = 'Mozilla/4.0 (compatible; MSIE 6.0; Symbian OS; Series 60';
$var[4] = 'http://www.verkata.com';
$result = count($var);
for ($i=0;$i<$result;$i++)
{
$ausg = stristr($text, $var[$i]);
if(strlen($ausg)>0)
{
header("location: $mobile");
echo '<BR>java/opera mini browser detected<BR>';
break;
}
}
?>
Comment