Mobile Number:
Text Message:
Second, here's the PHP script that would parse the parameters from the form posting, and then call the SendSMS function to submit the message. if (isset($_REQUEST['phone'])) { if (isset($_REQUEST['text'])) { $x = SendSMS("127.0.0.1", 8800, "username", "password", $_REQUEST['phone'], $_REQUEST['text']); echo $x; } else { echo "ERROR : Message not sent -- Text parameter is missing!\r\n"; } } else { echo "ERROR : Message not sent -- Phone parameter is missing!\r\n"; } */ ?>