Hello everyone,
There's a form on a remote site. When you fill it in it sends a sms. You are then display with a page that says 'message sent'.
I would like to have a form on my site, that submits the data to there form and runs the same process without getting back there 'message sent page' and replacing it with my own.
The form they use has the code:
<form method="POST" action="send_sms.asp">
Number: (e.g. 447763123456)<BR><input type="text" class="inputstyle" name="sendto" size="30" value="44">
<p>Message:<BR><textarea name="body" class="inputstyle" rows="6" cols="70"></textarea></p>
<p><input type="hidden" value="930088815" name="ses"></p>
<p><input type="submit" value="Send" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
Unfortunately fopen is not supported on the server I am but curl is. Please help with how I could do this.