Hi,
the usual way to POST information to a URL
is using a form in html:
<form method="POST" action="http://www.xxx.com" etc...
and then the server returns another html page as the reply.
Instead of this, I want to POST the information, for example
var1=value1
var2=value2
from my PHP code on the fly to an URL, and I
don't care about the return page and status.
How can I do this?
There must be a function along these lines:
httppost("http://www.xxx.com", "var1=value1,var2=value2");
but I have not been able to find it
in the manual.
Any hint or example would be dearly
appreciated.