I have a problem while displaying data from a database table on the screen.
$sql = $connection->query("Select * from usuarios");
if($sql)
{
while($exibe = $sql->fetch_assoc())
{
foreach($exibe as $key => $value)
{
echo "<td>". $value."</td>";
}
}
}