Skip to content
Snippets Groups Projects
Commit bccff5b6 authored by Matthieu Guffroy's avatar Matthieu Guffroy
Browse files

show list of clients

parent dbc672c4
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ switch($action) {
break;
case "listeClient":
$listArray = Client::getAll();
$listParams = array();
$listParams = array("title" => "Liste des clients");
include 'view/list.php';
break;
case "addPersonnel":
......
Afficher une liste ! (TODO)
\ No newline at end of file
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1><?php echo $listParams["title"]; ?></h1>
</div>
<pre>
<?php print_r($listArray); ?>
</pre>
</div>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment