web/tweetcast-proxy.php
author Raphael Velt <raph.velt@gmail.com>
Fri, 24 Aug 2012 13:07:29 +0200
changeset 684 f59daf0830d2
parent 432 2c18b115ab00
permissions -rw-r--r--
less naive implementation of common LDT platform URL

<?php

$url = 'http://polemictweet.com:8080/';

$qs = $_SERVER['QUERY_STRING'];

$toget = "$url?$qs";

echo file_get_contents($toget)

?>