Hi,
I've added a 3rd party SMS hub to my PHP web site that enables my users to send SMSes. What actually happens is a standard HTML form posting to the 3rd party hub address, which takes the data posted, and sends the SMS.
Once finished, the 3rd party hub returns a set of XML codes that explains what happened with that posting (successful / unsuccessful / why).
What I need to do is keep that posting invisible to my users, send the data to that site in the form of a HTML post, retrieve the XML codes, and display my own result page saying "Your message was sent.... etc...". That's where I'm stuck...
How do I keep that posting invisible to my users so they don't have to see the XML result page?
Thanks!