+ 1
How do I send data from MySQL server to my html page ?
I have HTML page which consist of table and I want to send data from server to table in my page.
3 Answers
+ 2
By using Php.
Firstly Html should submit request for data from Php, Php then read Mysql data and echo back to client.
+ 1
Remember server cannot send data to client automatically, clients must always send request before server can response it.
+ 1
use a PHP script to read read data from database and display it on your page