. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../fonctions/autoload.php"; class Ventedeclidisp extends Baseobj{ public $id; public $venteprod; public $declidisp; const TABLE="ventedeclidisp"; public $table=self::TABLE; public $bddvars = array("id", "venteprod", "declidisp"); public function __construct($id = 0){ parent::__construct(); if($id > 0) $this->charger($id); } public function charger($id){ return $this->getVars("select * from $this->table where id=\"$id\""); } public function charger_vdec($venteprod, $declidisp){ return $this->getVars("select * from $this->table where venteprod=\"$venteprod\" and declidisp=\"$declidisp\""); } } ?>