Im trying to make a auto SMS sent out to a phone everytime a order is placed from their website. But I cant seem to figure this out. Okay......I have a simple form which is the following:
<form name="disclaimer" action="http://www.mycricket.com/text/SendTo_SMS_System.asp?Step=2" method="post">
FROM:
<br>
<input type="hidden" name="from" value="">
<br>
Message:<br>
<input type="hidden" name="msg" value="You have a new order">
<br>
Email from:<br>
<input type="hidden" name="email_from" value="Denver Movers">
<br>
Cricket Number:<br>
<input type="hidden" name="cricket_phone_number" value="7208888888">
<input type="submit" name="Submit" value="Submit">
</form>
This is saved as just a cricket.html file and it works fine! However when I do the samething and try and cheat the system but doing this as a link:
http://www.mycricket.com/text/SendTo_SMS_System.asp?Step=2&cricket_phone_number=7208888888&msg=neworder
it doesnt work......any help please!