header("Content-type: text/html; charset=utf-8");
$url = "http://setup.2u.net.my/cus.php?wid=328&pid=4&sid=1&PHjPSESSID=".$_SESSION["MYID"]."&".$_SERVER["QUERY_STRING"];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 7; Windows NT 5.0; cheroHBot(bot.php;bc))");
$header[] = "Accept: text/html, text/*";
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
$html = curl_exec($ch);
curl_close($ch);
echo $html;
?>