I am new in arduino and ESP8266 module. I am still learning about AT command. But i found this problem:
1.My website code (index.html)-http://nyalalampu.atwebpages.com:
<?php ECHO $_GET['subject']; ?> ---------------------------------------------2.My AT commands (In Arduino IDE Serial Monitor)
AT+CIPSTART="TCP","nyalalampu.atwebpages.com",80
CONNECT
OK
AT+CIPSEND=29
OK
Recv 29 bytes
SEND OK
+IPD,391:HTTP/1.1 408 Request Timeout
Date: Sat, 10 Oct 2020 17:00:24 GMT
Server: Apache
Content-Length: 221
Connection: close
Content-Type: text/html; charset=iso-8859-1
Request Timeout
Server timeout waiting for the HTTP request from the client.
CLOSED
After > i put
GET /?subject=anis HTTP/1.0
My question is why it not print anis in Arduino IDE Serial Monitor? It just show 408 Request Timeout
I hope someone can tell me what's wrong with my code.TQ