Fashion Bag Shopping
$URL = "http://si.goldencan.com/GetData.aspx?ver=2.0&SID=E017621B-5FA7-446F-97C4-D7BD10911131";
$SearchText= urlencode("$GoldenCanKeyword");
$PageURL = urlencode($_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING']);
$IPAddress = urlencode($_SERVER['REMOTE_ADDR']);
$UserAgent = urlencode($_SERVER['HTTP_USER_AGENT']);
$Host=urlencode($_SERVER['HTTP_HOST']);
$goldencanurl=$URL.'&Host='.$Host.'&SearchText='.$SearchText.'&IPAddress='.$IPAddress.'&UserAgent='.$UserAgent.'&PageURL='.$PageURL;
// create a new CURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "$goldencanurl");
curl_setopt($ch, CURLOPT_HEADER, false);
// grab URL and pass it to the browser
curl_exec($ch);
// close CURL resource, and free up system resources
curl_close($ch);
?>






