Ok, I've seen some old discussions on this, but I'm curious what I'm doing wrong. When using UrlLoader.POST I've only had success if on my server I check the HTTP_RAW_POST_DATA in PHP (in that instance I'm sending a json table so that's fine), but I've had no luck sending named variables to POST as discussed here:
http://www.giderosmobile.com/forum/discussion/1508/post-and-get-methodsSo if I send "name=Zvardin" for instance, there is no $_POST['name']. I'm wondering if
@loves_oi had the same issue and thus decided to use GET in their instance. I can workaround it, but would really love to know what I'm missing.
Comments
http://www.giderosmobile.com/forum/discussion/1966/http-request-to-scoreoid-server-using-url-loader.#Item_5
You should add ["Content-Type"] = "application/x-www-form-urlencoded", to headers
as