. */ /* */ /*************************************************************************************/ require_once(__DIR__ . "/../pre.php"); require_once(__DIR__ . "/../auth.php"); if(! est_autorise("acces_catalogue")) exit; header('Content-Type: text/html; charset=utf-8'); $critere = $_GET["critere"]; $order = $_GET["order"]; $ref = $_GET["ref"]; $alpha = $_GET["alpha"]; if($_GET["type"] == 1) { require("../liste/rubrique.php"); liste_rubriques($ref, $critere, $order, $alpha); } else { require("../liste/produit.php"); liste_produits($ref, $critere, $order, $alpha); } ?>