BLaH adlı üyeden alıntı: mesajı görüntüle
$v = $_REQUEST["rp"];
		$v = substr($v,2);
		$v = substr($v,0,strlen($v)-1);
		$v = rot13decrypt($v);
		$vq = $v;
		$v1 = new Youtube_class();
		$url="https://gdata.youtube.com/feeds/api/videos/".$v."?v=2&alt=jsonc";
		$v= okux($url);
		$v = json_decode($v);
		if (is_object(@$v->error))
				{
					print_r($v->error);
					die();
				};
		
		//print_r($v->data);
		$title=@$v->data->title;

şöyle dener misin?

$v = $_REQUEST["rp"];
		$v = explode('/',$v);

		$v = rot13decrypt($v[1]); //$v[2] de olabilir. oradan dönecek stringin ne olduğunu bilmiyorum.
		$vq = $v;
		$v1 = new Youtube_class();
		$url="https://gdata.youtube.com/feeds/api/videos/".$v."?v=2&alt=jsonc";
		$v= okux($url);
		$v = json_decode($v);
		if (is_object(@$v->error))
				{
					print_r($v->error);
					die();
				};
		
		//print_r($v->data);
		$title=@$v->data->title;