0byt3m1n1-V2
Path:
/
home
/
nlpacade
/
www
/
classes
/
[
Home
]
File: Variable.class.php
<?php include_once(realpath(dirname(__FILE__)) . "/Baseobj.class.php"); class Variable extends Baseobj{ var $id; var $nom; var $valeur; var $protege; var $cache; var $table="variable"; var $bddvars=array("id", "nom", "valeur", "protege", "cache"); function Variable(){ $this->Baseobj(); } function charger($nom){ return $this->getVars("select * from $this->table where nom=\"$nom\""); } function charger_id($id){ return $this->getVars("select * from $this->table where id=\"$id\""); } } ?>
©
2018.