I am trying to send the contents of a php variable to a remote html form.
$var = "this is my variable" I now want to send this to www.anotherhost.com as input to their form...
do this...it works for me..
http://...........form_page.htm?ID=<?php echo $id ?>
than on that form page do this
text file bla bla value="<?php echo $ID ?>".....