Blog_view.php
<html>
<body><form method="post">
<table border="1">
<th>Serial Number</th>
<th>Name</th>
<?php
foreach($query as $result)
{?>
<tr>
<td>
<?php echo $result['id'];?>
</td>
<td>
<?php echo $result['name'];?>
</td>
</tr>
<?php
}
?>
</table>
</form>
</body>
</html>
<html>
<body><form method="post">
<table border="1">
<th>Serial Number</th>
<th>Name</th>
<?php
foreach($query as $result)
{?>
<tr>
<td>
<?php echo $result['id'];?>
</td>
<td>
<?php echo $result['name'];?>
</td>
</tr>
<?php
}
?>
</table>
</form>
</body>
</html>