Heres my code
$c = new com("somedomain.com"); $r=$c->post("/somescript.php","stuff");
Problem is, my hosting does NOT using com() so I was wondering if theres any alternative way to do the above using something else than com() or post()
thanks 😃
cmon people, need help 🙂
That is not what COM does; moreover you probably don' t need COM to do that.
Have a look at the manual with specific regard to fopen wrappers; you'll see that it's possible to do a HTTP POST using fopen.
Mark