Show table from database in php

Displaying data from a table is a very common requirement and we can do this in various ways depending on the way it is required. We will start with a simple one to just display the records and then we will move to advance one like breaking the returned records to number of pages. We will start with simple displaying the records of this table.

idnameclassmark
1 John Deo Four 75
2 Max Ruin Three 85
3 Arnold Three 55
4 Krish Star Four 60
5 John Mike Four 60
6 Alex John Four 55
7 My John Rob Fifth 78

Before starting please ensure that you have connected to MySql database and also check the article on PHP MySQL query to know how to execute MySql queries by using PHP

Let us first start by storing the query in a variable and then executing it
MySQLI database connection file
Example : Object Oriented Style

<?Php
require "config.php";// Database connection file.

$query="select * from student LIMIT 0,5 ";

//Variable $connection is declared inside config.php file & used here
if ($result_set = $connection->query($query)) {
while($row = $result_set->fetch_array(MYSQLI_ASSOC)){
echo $row['id'],$row['name'],$row['class'],$row['mark']."<br>";
}
 $result_set->close();
}
?>
More about the above code is here.
$connection Connection object Declared inside config.php file
$result_set query() returns True of False based on success or failure of Query. On success it returns mysqli_result object.
fetch_array Returns row of data from result set as array of string. NULL is returned if no more row is available to return.
Used WHILE loop to display record by record. You can see our php While to learn about loops.

The code above will print name , class and mark records and you can see we have used <br> tag to give one line break after each record. This can be formatted well to display inside a table.

idnameclassmarksex
1 John Deo Four 75 female
2 Max Ruin Three 85 male
3 Arnold Three 55 male
4 Krish Star Four 60 female
5 John Mike Four 60 female
Procedural style
<?Php
require "config.php";// Database connection file.

$query="select * from student LIMIT 0,5 ";
if ($result_set = mysqli_query($connection,$query)) {
while($row = $result_set->fetch_array(MYSQLI_ASSOC)){
echo $row['id'],$row['name'],$row['class'],$row['mark']."<br>";
}
 $result_set->close();
}
?>

Using MySQLi

MySQLi connection
<?Php
require "config.php";// Database connection
if($stmt = $connection->query("SELECT id, name ,class, mark FROM student")){
  echo "No of records : ".$stmt->num_rows."<br>";
  while ($row = $stmt->fetch_assoc()) {
	echo $row['id'],$row['name'],$row['class'].$row['mark']."<br>";
  }
}else{
echo $connection->error;
}
?>

Using PDO

PDO connection
require "config.php"; // Database Connection
////////////////
/////// Display records /////
$sql="SELECT id,name,class,mark  FROM student LIMIT 0,5 "; 

echo "<table>
<tr><th>id</th><th>Name</th><th>Class</th><th>Mark</th></tr>";

foreach ($dbo->query($sql) as $row) {
echo "<tr ><td>$row[id]</td><td>$row[name]</td><td>$row[class]</td><td>$row[mark]</td></tr>";
}
echo "</table>";
MySQLi select query to get data

Displaying single record

From the above code we can create links to display full details of the record. We will carry unique id of the record through query string and then display the single record.
Show table from database in php

Displaying single record per page

Breaking number of records to multiple pages

When our output have more number of records to display and we want to display few records ( say 10 only ) per page then we can use Paging concept to limit the number of records per page. We will add navigational links to move between pages to display all records.
Breaking number of records by PHP paging

Filtering records.

By adding SQL commands like WHERE conditions we can filter data as per our requirements. Let us find out the records of class Four only.
$query="select * from student WHERE class='Four'";
SQL WHERE Condition

PHP MySQL Query with Error message
Show table from database in php

How display all data from database in PHP table?

php $connect=mysql_connect('localhost', 'root', 'password'); mysql_select_db("name"); //here u select the data you want to retrieve from the db $query="select * from tablename"; $result= mysql_query($query); //here you check to see if any data has been found and you define the width of the table If($result){ echo "< ...

How do you display data in a database?

Very often you will need to use a MySQL table to store data inside it and then output that data by using a PHP script. To display the table data it is best to use HTML, which upon filling in some data on the page invokes a PHP script which will update the MySQL table.

How do I display a database table in HTML?

Display Data in an HTML Table Using PHP & MySQL.
Connect PHP to MySQL Database..
Insert Data Into PHPMyAdmin Table..
Fetch Data From MySQL Table..
Display Data in HTML Table..
Test Yourself to insert data..

How fetch data from database in PHP and display HTML table?

Use the following steps for fetch/retrieve data from database in php and display in html table:.
Step 1 – Start Apache Web Server..
Step 2 – Create PHP Project..
Step 3 – Execute SQL query to Create Table..
Step 4 – Create phpmyadmin MySQL Database Connection File..
Step 5 – Create Fetch Data PHP File From Database..