Sending Data to a Mysql WebServeur using POST method

rockwallaby:

iDroid wrote:
$_POST is used to get values from a HTML form element with a name that corresponds to the value inside the square brackets.

This is partly true, in that what you say is a method often used, but it is not the definition of the POST method.

Using the POST method, you simply place the data, not on the url, but within the body of the http request, whether that be a html form, or for example, json encoded data from an external server/client system like an Arduino. And as such it is possible to send what ever data you have from the Arduino to a server using this method. Using the POST method also allows you to send more data than the GET method.

Oh, never knew that. Thanks.
If that isn't the problem... [i]Then what is?[/i]