MySQL - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: MySQL (
/showthread.php?tid=503883)
MySQL -
SPA - 31.03.2014
Iv admin system with MySQL , how to locate it with my host site?
Re: MySQL -
iBeast - 31.03.2014
Search for mysql_connect in your Gamemode pwn file, enter your details in that.
Rather define your details beforehand as following
pawn Код:
#define MYSQL_HOST "put your host ip here"
#define MYSQL_USER "put your username to the database here"
#define MYSQL_PASS " put your password to the database here"
#define MYSQL_DB "put the database you want things to save to here"
Then just replace the details in mysql_connect with the defines.