how to fetch data from database in php and display in table, fetch data from database and display in html table
First, connect to a MySQL database. Check it out the connecting to MySQL database using PDO tutorial for detail information. Then, construct a SELECT statement and execute it by usingĀ the query() method of the PDO object. The query() method of the PDO object returns a PDOStatement object, or false on failure.
Select query php code –