You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
myDrive/contoleur/FrontControler.php

18 lines
297 B

<?php
require_once('controleur/gest.php');
class FrontControler {
private $actions = array(
"Gest" => ["wantToConnect"];
);
function start() {
session_start();
$action = $_REQUEST['action'];
if(in_array($action, $this->action['Gest']){
$controleur = new GestControler();
}
}
}