Ejemplo n.º 1
0
 /**
  * Retourne l'argent de l'user
  */
 public function argent()
 {
     include_once "class/info_argent.php";
     $argent = new info_argent($_SESSION['id']);
     $argent->req_argent();
     $this->argent = $argent->get_argent();
 }
Ejemplo n.º 2
0
 /**
  * Vérifier si l'user a lieu d'être sur cette page
  */
 public function verif()
 {
     $id = intval($_GET['id']);
     if (!empty($id) and is_numeric($id)) {
         include_once 'class/info_reserv_paye.php';
         $info = new info_reserv_paye($id, $_SESSION['id']);
         $info->req_result();
         $result = $info->get_result();
         // Savoir si la reservation appartient bien à l'user
         if ($result == 1) {
             include_once 'class/info_argent.php';
             $info = new info_argent($_SESSION['id']);
             $info->req_argent();
             $this->argent = $info->get_argent();
         } else {
             header('Location: index.php');
         }
     } else {
         header('Location: index.php');
     }
 }