13 lines
392 B
PHP
Executable File
13 lines
392 B
PHP
Executable File
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
|
|
class ControleurAjaxcontextdemandedecompte extends Controleur {
|
|
|
|
public function __construct() {
|
|
}
|
|
|
|
public function index() {
|
|
$_SESSION['idDemandeDecompte_C'] = $this->requete->getParametre("idDemandeDecompte");
|
|
$_SESSION['numeroDemandeDecompte_C'] = $this->requete->getParametre("numeroDemandeDecompte");
|
|
}
|
|
} |