1
<?php
2
3
$url = 'http://polemictweet.com:8080/';
4
5
$qs = $_SERVER['QUERY_STRING'];
6
7
$toget = "$url?$qs";
8
9
echo file_get_contents($toget)
10
11
?>