i want to send some data to my web page using GET METHOD. I am using a gsm shield and it works if put the value in the url myself.
This is the code i have used.
String one="AT+HTTPPARA=\"URL\",\"webhostapp.com/send2.php?depth=";
one.concat(dep);
one.concat("&latitude=");
one.concat(lat);
one.concat("&longitude=");
one.concat(lng);
one.concat("\"");
sendGSM("AT+HTTPACTION=0");