I am still in pursuit of the elusive goal of creating an app that works

Here's the situation:
I have a web form that is functioning when completed online:
http://ctflatt.on-rev.com/made2move/testsms.php
Once completed, the form posts to:
http://ctflatt.on-rev.com/made2move/sendmail.php
This functions as expected when completed online.
My issue is posting the same data from my app. The process completely falls apart and I am trying to figure out why.
Assuming the web form fields are named "email" and "timeEnd", here is the script I am using:
Code: Select all
if gNotification is not empty then
put (gNotification & gNotificationCarrier) into tSMS
put "email=" before tSMS
put the short system time into tTimeEnd
put "&timeEnd=" before tTimeEnd
set the text of field "notificationDEV" to (tSMS & tTimeEnd) ***To see the data as posted below
post (tSMS & tTimeEnd) to URL "http://ctflatt.on-rev.com/made2move/sendmail.php"
answer it
end if
Am I missing something obvious?
If I need to provide more info, please let me know.
Thanks!
Todd