12 lines
390 B
PHP
Executable File
12 lines
390 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Modele.php';
|
|
class Adherent_temp extends Modele {
|
|
|
|
public function getAdherent_temp($idCollege, $dateEntree, $user, $prorata)
|
|
{
|
|
$sql = 'call sp_init_adherent(?, ?, ?, ?)';
|
|
|
|
$adherent_temp = $this->executerRequete($sql, array($idCollege, $dateEntree, $user, $prorata));
|
|
return $adherent_temp->fetch(PDO::FETCH_ASSOC);
|
|
}
|
|
} |