modification pdo

This commit is contained in:
pierre renaudot
2023-12-21 10:43:53 +01:00
parent ce94d71198
commit 7fcee1a7bf
9 changed files with 152 additions and 61 deletions

View File

@@ -7,6 +7,8 @@
// Date : 03/05/2023 à 11H01 '
// Auteur : pascal-blain@wanadoo.fr '
//****************************************'
header('location: index.php?direction=home');
if (!isset($_REQUEST['action'])) {
$_REQUEST['action'] = 'demandeConnexion';
}

View File

@@ -0,0 +1,3 @@
<?php
include(__DIR__ . '/../vues/v_homePage.php');

View File

@@ -1,4 +1,9 @@
<?php
require_once(__DIR__ . '/../Class/class.newFiche.php');
$newFiche = new Class_newFiche($pdo);
$liste = $newFiche->listFraisForfaitaires();
var_dump($liste);
include(__DIR__ . '/../vues/v_newFiche.php');