does any one know how to grab the quiry string of a remote server?
I tried the following however it grabs the query string of my server.
Code: Select all
<?php
$url = "http://www.ibanksystems.com/passage/";
$filepointer = fopen($url,"r");
if($filepointer){
$query=$_SERVERї'QUERY_STRING'];
echo $query;
}
fclose($filepointer);
?>Chris