here is my code , I could not find where's the problem!
<?php
include("dbc.php");
$result = mysqli_query($dbc,"SELECT * FROM employee");
while($row = mysqli_fetch_array($result))
{
echo $row['name'] . " " . $row['age']." ".$row['id'];
echo "<br>";
}
?>