<?php include ("configuration.php");
?>
<?php
$result=mysql_query ("select*from
info");
echo"<table
border='1'>
<tr>
<th>ID:</th>
<th>Name:</th>
<th>Address</th>
<th>Phone:</th>
</tr>";
while($row=mysql_fetch_array($result))
{
echo"<tr>";
echo
"<td>" .$row['id']. "</td>";
echo
"<td>" .$row['name']. "</td>";
echo
"<td>" .$row['address']. "</td>";
echo
"<td>" .$row['cell']. "</td>";
echo "</tr>"; }
echo
"</table>";
?>