Example form using the SMS API
September 11th, 2009
Below is a form submitted by a user of the SMS API (the username and password have been removed from the form of course). But when I saw this form, I thought it would be quite a useful example, to demostrate how simple the API can be interacted with.
<html>
<head>
<title>SMS Sender</title>
</head>
<body>
<p>
<form action=https://sms.hostingireland.ie method=get>
<table border=0>
<tr>
<td>To:</td>
<input type=hidden name=username value=USERNAME>
<input type=hidden name=password value=PASSWORD>
<td><input type=text name=to></td>
</tr>
<tr>
<td>Message:</td>
<td>
<textarea name=message width=25 height=5>Test Message.
</textarea>
</td>
</tr>
<tr>
<td></td>
<td>
<input type=submit value=Send>
</td>
</tr>
</form>
</p>
</body>
</html>
I hope this helps interested users see how quickly the API can be connected to, as always, if you have any questions or would like to send me any feedback, either comment below or submit a post on our Forum