$options = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-Type: application/x-www-form-urlencoded' . PHP_EOL,
'content' => http_build_query($_GET)
)
);
file_get_contents(
$url = "http://mysite.com",
false,
stream_context_create($options));