[HELP]DB 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: [HELP]DB MySQL (
/showthread.php?tid=284360)
[HELP]DB MySQL -
TheBluec0de - 18.09.2011
how to create a Database MySQL ??
Re: [HELP]DB MySQL -
Venice - 18.09.2011
in ur pc use Xampp or wampserver ,, In ur hosted server there is no option for mysql ? then contact support
Re: [HELP]DB MySQL -
TheBluec0de - 18.09.2011
I know that I use WampServer or XAMPP, but I do not understand how you create a database
Re: [HELP]DB MySQL -
Venice - 18.09.2011
More tutorials on *******
Re: [HELP]DB MySQL -
TheBluec0de - 18.09.2011
Link please
?
Re: [HELP]DB MySQL -
Venice - 18.09.2011
[ame]http://www.youtube.com/watch?v=nBz2lG_jm-A[/ame]
Re: [HELP]DB MySQL -
TheBluec0de - 18.09.2011
Quote:
Originally Posted by FireCat
Omg -_-
|
:facepalm: what ??
Re: [HELP]DB MySQL -
MadSkillz - 18.09.2011
Use SQLite I started with it... it's very user friendly!
Re: [HELP]DB MySQL -
Kingunit - 19.09.2011
Creating a database? Just in your panel, depends on every hoster. Click on something like: "Create database" give it a name, later you can login at PHPMyAdmin. You need to create "tabels". f ex:
PHP код:
CREATE TABLE Playerdata (
ID INT(10) AUTO_INCREMENT,
Firstname VARCHAR(100) NOT NULL,
Lastname VARCHAR(100) NOT NULL,
PRIMARY KEY (pid)
) TYPE=MyISAM;
// Go on