i fixed it with curl. I don't know how good and effective this is but it works.
<?php
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'http://www.domain.com/site/script.php?go=type&pid=1');
curl_exec($curl_handle);
curl_close($curl_handle);
?>
|