I using arduino uno with wifi shield,I only able to send one data type but unable to send another data type.This is shown in attachment below.What should I add in the following code?
void sendingRequest()
{
if (client.connect(serverName, 80)) {
Serial.println("connected");
Serial.println("sending request");
digitalWrite(ledPin, HIGH);
delay(1000);
sprintf(postmsg, "GET /pushingbox?devid=v100000000000&count=%d HTTP/1.1", count);
client.println(postmsg);
client.print("Host: ");
client.println(serverName);
client.println("User-Agent: Arduino");;
client.println();}
Serial.println(postmsg);
Serial.println("Host: api.pushingbox.com");
Serial.println("Connection: close");
Serial.println();