Embedded parameters in URL string being stripped

[lua] It looks like network.request is trimming off any request parameters that are inside the URL, but not re-formatting them as x-www-form-urlencoded in the body of the request (which is fine). Is there a reason the parameters are getting trimmed? is there a way to stop it from being trimmed? E.g. network.request( “http://example.com/vtag/json.php?n=13”, “GET” … ) shows up on my server as: [22/May/2014:09:46:58 -0700] “GET /vtag/json.php HTTP/1.1” 200 494 “-” "Corona%20Simulator/2014.2189 … But the php script never sees the “n=13” parameter. The obvious work-around is to use HTTP-POST, but isn’t “?foo=bar” a valid HTTP request? why disable it within network.request? [/lua]

Apologies for the horrible formatting … the web-form never showed any formatting options/no editor.

Apologies for the horrible formatting … the web-form never showed any formatting options/no editor.