when the user registers your product go directly to your panel (php)

0

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;
}
    
asked by anonymous 17.02.2017 / 04:00

0 answers