prestation/Controleur/ControleurAjaxmajlibellecollege.php
2025-12-05 10:42:46 +00:00

21 lines
550 B
PHP
Executable File

<?php
require_once 'Framework/Controleur.php';
require_once 'Modele/College_temp.php';
class ControleurAjaxmajlibellecollege extends Controleur {
private $college_temp;
public function __construct() {
$this->college_temp = new College_temp();
}
public function index()
{
$idCollegeTemp = $_SESSION['idCollegeTemp'];
$nouvLibelleCollege = $this->requete->getParametreFormulaire("nouvLibelleCollege");
$this->college_temp->maj_libelle_college($idCollegeTemp, $nouvLibelleCollege);
}
}