Hello everyone,
I creating a script these days who need to use resources from a third party vendor. My third party vendor is supposed to recieve parameters from me in order to send an sms to a certain customer. I am provided with an URL that I am calling.
I have tried using
header("location:http://www.thirdparty.com/sendsms.php?phonenumb=xxxx....");
but I want the result of this calling to be returned to my script. If the third party script return a status code I want it returned back to me in order to do the correct updating in my SQL base etc.
Does anyone have a clue?
Tore