11 lines
373 B
PHP
Executable File
11 lines
373 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Modele.php';
|
|
class Entete_echeancier_temp extends Modele {
|
|
|
|
public function getEntete_echeancier_temp($user) {
|
|
$sql = 'select * from entete_echeancier_temp where (user=?)';
|
|
|
|
$entete_echeancier = $this->executerRequete($sql, array($_SESSION['login']));
|
|
return $entete_echeancier->fetch(PDO::FETCH_ASSOC);
|
|
}
|
|
} |