I would like to know how to do a while within another ... Ex. I have Categories and items within the category.
Categoria 1
| Item da categoria 1
| Item da categoria 1
Categoria 2
| Item da categoria 2
| Item da categoria 2
Categoria 3
| Item da categoria 3
| Item da categoria 3
And so on ... how do I do this using PHP PDO ... Follow my code
<? $pdo = db_connect();
$listar = $pdo->prepare("SELECT * FROM arquivos WHERE cliente_id =".$_SESSION['user_id']." AND tipo =".$tipo);
$listar->execute(); ?>
<div>
<ul>
<? while ($dados = $listar->fetch(PDO::FETCH_OBJ)): ?>
<li>
<? echo $dados->disciplinas; ?>
<?
$listar2 = $pdo->prepare("SELECT * FROM arquivos WHERE cliente_id =".$_SESSION['user_id']." AND tipo =".$tipo);
$listar2->execute();
?>
<ul>
<? while ($dados2 = $listar2->fetch(PDO::FETCH_OBJ)): ?>
<li><? echo $dados2->titulo; ?></li>
<? endwhile; ?>
</ul>
</li>
</ul>
</div>
<? endwhile; ?>
I hope you can help me: D