46,14 → 46,14 |
* /Meta/Dernier/code_projet |
*/ |
public function getElementDerniere($params_url) { |
$p = $this->traiterParametresUrl(array('projet'), $params_url); |
$p = $this->traiterParametresUrl(array('projet'), $params_url, false); |
extract($p); |
$nom_table = strtolower($projet).'_meta'; |
|
$donnees = false; |
if (isset($projet)) { |
$nom_table = strtolower($projet).'_meta'; |
$requete = ($this->distinct ? 'SELECT DISTINCT' : 'SELECT').' * '. |
"FROM $nom_table ". |
"FROM `$nom_table` ". |
'ORDER BY '.((!is_null($this->orderby)) ? $this->orderby : 'id_meta DESC').' '. |
'LIMIT 0,1 '; |
|