<?php include_once 'CLASS/autoload.php'; $title = 'Les Menus Services'; $site = new page_clients('Rappel clients'); $site->corps = $site->Rappelclients(); $site->affiche();
<?php include_once 'CLASS/autoload.php'; $title = 'Les Menus Services'; $site = new page_clients('Excel'); $site->corps = $site->AfficheExcelClientsCom(); $site->excel();
<?php include_once 'CLASS/autoload.php'; $site = new page_clients('Liste de clients'); if (isset($_POST['modifclient'])) { $site->corps = $site->modifier_client() . $site->affichelisteclient(); } else { $site->corps = $site->affichelisteclient(); } $site->affiche();
<?php include_once 'CLASS/autoload.php'; // pour inclure nos classes $title = 'Les Menus Services'; $site = new page_clients('clients'); $site->corps = '<nav > <ul id="navigation" class="nav-main"> <li> <a href="ModifierClients.php"> Accès aux fiches Clients</a> </li> <br> <li> <a href="ListeClient.php"> Liste des Clients</a> </li> <br> <li> <a href="AjoutClients.php"> Créer un nouveau Client</a> </li> <br> </ul> <ul id="navigation" class="nav-main"> <br> <li> <a href="RappelClients.php"> Rappel clients</a> </li>
<?php include_once 'CLASS/autoload.php'; $title = 'Les Menus Services'; $site = new page_clients('Période Clients'); $site->corps = $site->PeriodeClients(); $site->affiche();
<?php include_once 'CLASS/autoload.php'; $title = 'Les Menus Services'; $site = new page_clients('Excel'); $site->corps = $site->Rechercher(); $site->excel();
<?php include_once 'CLASS/autoload.php'; // pour inclure nos classes $title = 'Les Menus Services'; $site = new page_clients('ajoutclients'); $site->corps = $site->afficheajoutclient(); $site->affiche();
<?php include_once 'CLASS/autoload.php'; $site = new page_clients('Affiche client'); if (isset($_POST['modifclient'])) { $site->corps = $site->modifier_client() . $site->afficheModifClient(); } else { $site->corps = $site->afficheModifClient(); } $site->affiche();
<?php include_once 'CLASS/autoload.php'; $title = 'Les Menus Services'; $site = new page_clients('Tous les Clients'); $site->corps = $site->Atouslesclients(); $site->affiche();