Gary Howard wrote:
my PHP script Looks like.... running PHP5.2
<?php
$ID = $_POST["IDString"];
echo $ID;
?>
Without analysing the code, it occurs to me that the output is missing
the HTTP header, therefore, the component may not detect the output.
Try this:
<?php
$ID = $_POST["IDString"];
# Output header:
echo "Content-Type: text/html\n\n";
echo $ID;
?>
dZ.
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be