Query Help
#2

And what are you trying to do?
If you are trying to load all houses OnGameModeInit then this would do :
PHP код:
mysql_tquery(mysql"SELECT * FROM `houses`""OnLoadHouses"""); 
And if you are trying to load a particular house that belongs to a player online then this would do :
PHP код:
new pname[MAX_PLAYER_NAME], query[100];
GetPlayerName(playeridpnamesizeof(pname));//playerid = the player who's house is to be loaded
mysql_format(mysqlquerysizeof(query), "SELECT * FROM `houses` WHERE `owner` = '%e'"pname);
mysql_tquery(mysqlquery"OnLoadHouses"""); 
Reply


Messages In This Thread
Query Help - by Dubya - 30.05.2015, 04:55
Re: Query Help - by BroZeus - 30.05.2015, 05:30
Re: Query Help - by Vince - 30.05.2015, 09:19
Re: Query Help - by Konstantinos - 30.05.2015, 09:23

Forum Jump:


Users browsing this thread: 1 Guest(s)