web/tweetcast-proxy.php
author ymh <ymh.work@gmail.com>
Wed, 18 Dec 2019 09:52:35 +0100
changeset 1522 3ad95f783499
parent 432 2c18b115ab00
permissions -rw-r--r--
Migrate to poetry to manage the local venv

<?php

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

$qs = $_SERVER['QUERY_STRING'];

$toget = "$url?$qs";

echo file_get_contents($toget)

?>