0
I have a problem showing data from a database table on the screen.
- I was able to show the data but I can’t jump the line, show the data sequentially, code below.
$sql = $connection->query("Select * from usuarios");
if($sql)
{
while($exibe = $sql->fetch_assoc())
{
foreach($exibe as $key => $value)
{
echo "<td>". $value."</td>";
}
}
}
It worked, thanks a lot.
– Gustavo Henrique
@Gustavohenrique mark as answer please
– Alvaro Alves