26 lines
415 B
PHP
Executable File
26 lines
415 B
PHP
Executable File
<?php
|
|
// idParam pour afficher ou pas le menu --> table param
|
|
switch ($numeroMenuPrpal) {
|
|
case '0': //accueil
|
|
$idParam=22;
|
|
break;
|
|
|
|
case '1': //catalogue
|
|
$idParam=3;
|
|
break;
|
|
|
|
case '12': //panier;
|
|
$idParam=5;
|
|
break;
|
|
|
|
case '6': //client
|
|
$idParam=2;
|
|
break;
|
|
|
|
case '16': // infos
|
|
$idParam=6;
|
|
|
|
case '20': // Pub cas special hors param
|
|
$idParam=100;
|
|
}
|
|
?>
|