| Id |
Name |
Email |
Comment |
Date |
|
";
// print the random numbers
while($info = mysqli_fetch_array($result))
{
$id=$info['id'];
$name=$info['name'];
$email=$info['email'];
$comment=$info['comment'];
$date_post=$info['date_post'];
print "
| $id |
$name |
$email |
$comment |
$date_post |
Delete |
";
}
//close up ther table
print "
";
?>