I have a system and in it when the user registers goes directly to the ads page, but now he does not list the product of that user in his panel
<?php
include_once ("../Model/Produto.php");
if (isset($_REQUEST)){
$action = $_REQUEST['action'];
} else {
$action = "";
}
$Produto = new Produto;
switch ($action){
case 'listar':
$listaProdutos = $Produto->listar();
$listaProdutosComprar = $Produto->listarCompra();
$listaProdutosDoacao = $Produto->listarDoacao();
$listaProdutosCruzar = $Produto->listarCruzar();
include_once '../View/listarProduto.php';
include_once '..View/painel.php';
break;
}