. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../fonctions/autoload.php"; class Zone extends Baseobj{ var $id; var $nom; var $unite; const TABLE="zone"; var $table=self::TABLE; var $bddvars=array("id", "nom", "unite"); 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\""); } } ?>