ESP8266 WiFi MySQL database

Hello everyone,
I’m working on barcode scanning terminal with WiFi connection. I want to check scanned ID in MySQL database using wifi connection. In easy words - I have string variable and and I want to check if it is present in MySQL database. How can I achieve this?

Just write a simple PHP script that takes data from an HTTP request, performs the database operation, and sends a response back to the ESP.

http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers

Pieter

So - I guess there’s a simple method to reach php script from esp8266.

Yes, just use the WiFiClient class to establish a TCP connection to the server, send it an HTTP request, and read back the response.

Pieter