Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. client.println("POST /URL HTTP/1.0");
  2. client.println("Host: HOST");
  3. client.println("Content-Type: application/x-www-form-urlencoded");
  4. client.print("Content-Length: ");
  5. client.println(postvars.length());
  6. client.println("Connection: close");
  7. client.println();
  8. client.println(postvars);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement