08.12.2016, 02:31
You are selecting more than 1 information from the table.
Change this
to this
Also check your mysql_log and see what is loading and what is not loading.
Change this
PHP код:
format(Query, sizeof(Query), "SELECT * FROM Bans WHERE Name = '%q' COLLATE NOCASE", targetid);
PHP код:
format(Query, sizeof(Query), "SELECT Name FROM Bans WHERE Name = '%q' COLLATE NOCASE", targetid);

