Пример #1
0
<?php

include_once 'CLASS/autoload.php';
$title = 'Les Menus Services';
$site = new page_clients('Rappel clients');
$site->corps = $site->Rappelclients();
$site->affiche();
Пример #2
0
<?php

include_once 'CLASS/autoload.php';
$title = 'Les Menus Services';
$site = new page_clients('Excel');
$site->corps = $site->AfficheExcelClientsCom();
$site->excel();
Пример #3
0
<?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();
Пример #4
0
<?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>
Пример #5
0
<?php

include_once 'CLASS/autoload.php';
$title = 'Les Menus Services';
$site = new page_clients('Période Clients');
$site->corps = $site->PeriodeClients();
$site->affiche();
Пример #6
0
<?php

include_once 'CLASS/autoload.php';
$title = 'Les Menus Services';
$site = new page_clients('Excel');
$site->corps = $site->Rechercher();
$site->excel();
Пример #7
0
<?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();
Пример #8
0
<?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();
Пример #9
0
<?php

include_once 'CLASS/autoload.php';
$title = 'Les Menus Services';
$site = new page_clients('Tous les Clients');
$site->corps = $site->Atouslesclients();
$site->affiche();