Utilisateurs"; */ $ent = "Paramétrage -> Cantons"; /** * Icone à afficher * Ex : $ico = "../img/ico.png"; */ $ico = "../img/ico_parametrage.png"; /** * ???????????????????? * programme édition : nomfichier.pdf.php */ $edition = ""; // SELECT /** * Tableau de noms de champs à afficher * Ex : $champAffiche = array ("nomtable1.idtable", "libelletable", "nbtable", "phototable"); */ $champAffiche = array ( "canton", "canton_libelle"); // FROM /** * Nom de la table à afficher (possibilité d'insérer une jointure) * Ex : $table = "nomtable"; $table = "nomtable1 INNER JOIN nomtable2 ON nomtable1.idtable = nomtable2.idtable"; */ $table = "canton"; // WHERE /** * Chaine correspondant à la clause WHERE * Ex : $selection = ""; $selection = "WHERE nbtable > 0"; */ $selection = ""; /** * Tableau de noms de champs à rechercher * Ex : $champRecherche = array ("nomtable1.idtable", "libelletable", "nbtable", "phototable"); */ $champRecherche = array ( "canton", "canton_libelle"); // ORDER BY /** * Chaine correspondant à la clause ORDER BY * Ex : $tri = ""; $tri = "ORDER BY libelletable"; */ $tri = "ORDER BY canton"; // LIMIT /** * Nombre d'enregistrements par page * $serie = 30; */ $serie = 10 ; ?>