How do I make projects belonging to the same department in the same section?
$sql = "SELECT d.nome, p.titulo FROM projeto p, departamento d WHERE p.dpto_id=d.id ORDER BY d.nome, p.titulo";
$dpto=null;
foreach ($rows as $reg){
$departamento=$reg["nome"];
$titulo=$reg["titulo"];
if($departamento!==$dpto){
echo "<section>";
echo "<h1>". $departamento . "</h1>";
echo "<p>". $titulo ."</p>";
} elseif ($departamento===$dpto) {
echo "<p>". $titulo ."</p>";
}
$dpto=$departamento;
}
//Resultdo final deveria ser assim
<section>
<h1>nome do departamento</h1>
<p>lista de projetos</p>
</section>
<section>
<h1>outro departamento</h1>
<p>sua de projetos</p>
</section>
I tried that, but I can not close the section tag.