Hi,
I will prefer that you host the following code on
yubnub.org site.
This will save intermediate server connection and response to the user will be faster.
txtweb api key can be obtained by registering free at the site.
<head>
<title> Hello! </title>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<meta name='txtweb-appkey' content='abc' />
</head>
<?php
$message = urlencode($_REQUEST['txtweb-message']);
$url="
http://yubnub.org/parser/parse?command=$message";
$homepage = file_get_contents("$url");
echo $homepage;
?>
-- Shantanu