24.01.2017, 17:56
this loads info from 1 mysql table
and if I want to load info from other table (table name : "veh") as well should the code look like this?:
Код:
mysql_format(mysql, query, sizeof(query), "SELECT * FROM `info` WHERE `player` = '%e' LIMIT 1", name); mysql_tquery(mysql, query, "Loading", "i", playerid);
Код:
mysql_format(mysql, query, sizeof(query), "SELECT * FROM `info`, `veh` WHERE `player` = '%e' LIMIT 1", name); mysql_tquery(mysql, query, "Loading", "i", playerid);