Pages vues depuis 05/06/2021 : 1 779 438
Index du forum »» Demo »» PollNewest
////////après correction pour php8 (prob with argument) pas sûr que cela fonctionne en 5 ...
#autodoc PollNewest() : Bloc Sondage <br />=> syntaxe : <br />function#pollnewest<br />params#ID_du_sondage OU vide (dernier sondage créé)
function PollNewest(int $id=null) : void {
global $NPDS_Prefix;
// snipe : multi-poll evolution
if ($id!=0) {
settype($id, "integer");
list($ibid,$pollClose)=pollSecur($id);
if ($ibid) pollMain($ibid,$pollClose);
} elseif ($result = sql_query("SELECT pollID FROM ".$NPDS_Prefix."poll_data ORDER BY pollID DESC LIMIT 1")) {
list($pollID)=sql_fetch_row($result);
list($ibid,$pollClose)=pollSecur($pollID);
if ($ibid) pollMain($ibid,$pollClose);
}
}
#autodoc PollNewest() : Bloc Sondage <br />=> syntaxe : <br />function#pollnewest<br />params#ID_du_sondage OU vide (dernier sondage créé)
function PollNewest(?int $id): void {
global $NPDS_Prefix;
// snipe : multi-poll evolution
if (isset($id)) {
list($ibid,$pollClose)=pollSecur($id);
if ($ibid)
pollMain($ibid,$pollClose);
} elseif ($result = sql_query("SELECT pollID FROM ".$NPDS_Prefix."poll_data ORDER BY pollID DESC LIMIT 1")) {
list($pollID)=sql_fetch_row($result);
list($ibid,$pollClose)=pollSecur($pollID);
if ($ibid)
pollMain($ibid,$pollClose);
}
}