Now it is used through "GET"(i am totally new to GET and POST terms), what if i want to send some sensor data to the server?What should i do then.I would be thankfull if somebody can guide me.Is it will be simply like this
With respect to sending data to the the server, i think we simply need to push data over serial.Am i right?
No. The serial port is one way of getting data out of the Arduino. The ethernet shield is another way. The server.print() and client.print() methods are how to get data to clients or servers.
But, it isn't just a matter of pushing data. The data MUST be in the format that the other end of the connection expects. Most servers don't understand "POSTpath", but they DO understand "POST path".