<?php
$connect = mysqli_connect("localhost", "root", "", "zzz");
$sql = "SELECT * FROM brand INNER JOIN product ON brand.brand_id = product.brand_id";
$result = mysqli_query($connect, $sql);
?>
<!DOCTYPE html>
<html>
<head>
<title>Webslesson Tutorial | Fetch Data from Two or more Table Join using PHP and MySql</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<br />
<div class="container" style="width:500px;">
<h3 align="">Fetch Data from Two or more Table Join using PHP and MySql</h3><br />
<div class="table-responsive">
<table class="table table-striped">
<tr>
<th>Brand Name</th>
<th>Product Name</th>
</tr>
<?php
if(mysqli_num_rows($result) > 0)
{
while($row = mysqli_fetch_array($result))
{
?>
<tr>
<td><?php echo $row["brand_name"];?></td>
<td><?php echo $row["product_name"]; ?></td>
</tr>
<?php
}
}
?>
</table>
</div>
</div>
<br />
</body>
</html>