Hello all. I have built an iOS app that sends data to a php script in key/value pairs using a stringWithFormat. I would like to build the same in an Android app. I'm seeing several examples on how to send data to a web form or to an MySQL database but my php script just grabs the values it is sent via post method and sends them to me in an html formatted email. Does anyone have an example of how to send a few vars to a php script via post much like an html web form would?
I have successfully sent a single key/ value using
Dim jobPost As HttpJob
jobPost.Initialize("JobPostName",Me)
jobPost.PostString("http://appsbymick.com/gstest.php","lastname="&"Fuzzy"
But I need to send about 25 items.
How should I go about this?
Thanks so much!
I have successfully sent a single key/ value using
Dim jobPost As HttpJob
jobPost.Initialize("JobPostName",Me)
jobPost.PostString("http://appsbymick.com/gstest.php","lastname="&"Fuzzy"
But I need to send about 25 items.
How should I go about this?
Thanks so much!