bom dia, estou fazendo um trabalho e nele tenho que montar uma tabela com 4 linhas e 5 colunas utilizando for e echo, mas do jeito q estou fazendo as colunas só estão sendo criadas na última linha, alguém poderia me ajudar?
<?php
echo '<table border="1">';
for($i = 1; $i <= 4; $i++) {
echo '<tr> ';
echo '</tr>';
for ($i = 1; $i <= 5 ; $i++) {
echo '<td>';
echo 'teste;';
echo '</td>';
}
}
echo '</table>';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>