24.03.2009, 16:10
Hi all!
I'm using this plugin, but I've got a question:
How can I make query, which gets back more than 1 row:
Here is my trying:
Thanx!
I'm using this plugin, but I've got a question:
How can I make query, which gets back more than 1 row:
Here is my trying:
pawn Код:
new line[128], f=0, idx, field[MAX_PLAYER_NAME];
CheckSQLConnection();
mysql_query("SELECT * FROM forbnames");
mysql_store_result();
while(mysql_fetch_row(line)) {
mysql_fetch_row_format(line, " ");
field = strtok(line, idx);
format(ForbidNames[f], MAX_PLAYER_NAME, field);
f++;
}
mysql_free_result();