. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../fonctions/autoload.php"; class Promoutil extends Baseobj{ var $id; var $promo; var $commande; var $code; var $type; var $valeur; const TABLE="promoutil"; var $table=self::TABLE; var $bddvars = array("id","promo","commande", "code", "type", "valeur"); function __construct(){ parent::__construct(); } function charger($id){ return $this->getVars("select * from $this->table where id=$id"); } function charger_commande($commande){ return $this->getVars("select * from $this->table where commande=$commande"); } } ?>