PHP:
<?php
echo($_GET["message"]);
?>
TQS:
function phpObject::onLine(%this, %line)
{
if(%this.echoNow)
echo(%line);
if(%line $= "")
%this.echoNow = true;
}
function phpObject::onConnected(%this, %addrip)
{
%this.echoNow = false;
}
%php = new tcpObject(phpObject);
%php.connect("127.0.0.1:80");
%php.send("GET /yourPage.php?message=Hello HTTP/1.0\r\nHost: 127.0.0.1\r\n\r\n");
Also, coding help yo.