. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../fonctions/autoload.php"; class Statut extends Baseobj{ var $id; var $nom; const TABLE="statut"; var $table=self::TABLE; var $bddvars = array("id", "nom"); function __construct($id = 0){ parent::__construct(); if($id > 0) $this->charger($id); } function charger($id){ return $this->getVars("select * from $this->table where id=\"$id\""); } function charger_nom($nom){ return $this->getVars("select * from $this->table where nom=\"$nom\""); } } ?>