// New Games
$DB->query("SELECT g.gid, g.gtitle, g.gname, g.gcat, cat.password, cat.active FROM ibf_games_list AS g, ibf_games_cats AS cat WHERE g.active=1 AND cat.active=1 AND g.gcat=cat.c_id AND trim(password)='' ORDER BY g.added DESC LIMIT ".$this->arcade->settings['games_new']);
$firstnew = true;
while($newgline = $DB->fetch_row()) {
if($firstnew) {
$firstnew = false;
} else {
$new_games .= "<br />\n";
}
if (strlen($newgline['gtitle'])>$MAXLEN)
{
$stripoff = strrpos(substr($newgline['gtitle'], 0, $MAXLEN+1)," ");
if ($stripoff>0)
{
$newgline['gtitle'] = substr($newgline['gtitle'], 0, $stripoff)."...";
}
else
{
$newgline['gtitle'] = substr($newgline['gtitle'], 0, $MAXLEN)."...";
}
}
$new_games .= "<img src='arcade/images/{$newgline[gname]}2.gif' alt='' width='30' height='30' /> <a href='".$ibforums->base_url."act=Arcade&do=play&gameid={$newgline['gid']}'>{$newgline['gtitle']}</a> ";
}
// End Newest Games
la stringa e' questa