• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

dokladne ID.

Ezaqu

New Member
Joined
Oct 19, 2009
Messages
24
Reaction score
0
PHP:
foreach($SQL->query('SELECT * FROM ' . $SQL->tableName('guild_wars') . ' WHERE ' . $SQL->fieldName('status') . ' IN (1,4) OR ((' . $SQL->fieldName('end') . ' >= (UNIX_TIMESTAMP() - 604800) OR ' . $SQL->fieldName('end') . ' = 0) AND ' . $SQL->fieldName('status') . ' IN (0,5));') as $guildd)
{
        $a = new Guild();
        $a->load($guildd['guild_id']);
        if(!$a->isLoaded())
                continue;

Moje pytanie brzmi jak do tego dopisac dokladne ID gidlii:

PHP:
       $a = new Guild();
        $a->load($guildd['guild_id']);
        if(!$a->isLoaded())
                continue;

?
 
Back
Top