I am trying to get my ESP8266 "hit" my website with some GET variables in the URL.
My connection to AP works fine, and when I ussye the AT commands as follow, I get the following responses:
AT+CIPSTART="TCP","www.mydom.com",80
CONNECT
AT+CIPSEND=93
OK
GET /mypage.php?var=arduino_test&var2=121 HTTP/1.0\r\nHost: www.mydom.com\r\n\r\n
busy s...
Recv 93 bytes
SEND OK
CLOSED
However, I do not get the actual "hit" on my webserver.
I have made a simple PHP page on the mypage.php that reads the two get variables and write them to a mysql DB - never get entries there, but when I manually hit the URL in a browser, I get entries made in the DB