Fatal error: Unknown(): The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition commande of the object you are trying to operate on was loaded _before_ the session was started in /home/apb/public_html/html/commande.php on line 6

commande.php :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
<?php
  session_start();
  if ($_SESSION["rang"]>0) {
    if (isset($_GET["add"])) {
      $add = intval($_GET["add"]);
      $_SESSION["commande"]->addProduit($add, 1);
      $_SESSION["commande"]->affiche();
    }
  } else {
    echo '<center><b>Désolé, vous devez être inscrit et connecté pour passe une commande.</b></center>';
}
?>
Pourtant, dans mon index.php, j'ai :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
$_SESSION["commande"] = new Commande();