First of all you need to create the tables. The code is given for that...
CREATE TABLE `users` (
`userid` INT( 11 ) NOT NULL AUTO_INCREMENT ,
`username` VARCHAR( 255 ) NOT NULL ,
`password` VARCHAR( 32 ) NOT NULL ,
`email` VARCHAR( 255 ) NOT NULL ,
`biography` TEXT NOT NULL ,
PRIMARY KEY ( `userid` )
);
Go into your cPanel or whatever control hosting panel your using and try to find the MySQL databases icon. Click into that and then at the bottom of the page you will find a phpMyAdmin link. Click on that. This brings up phpMyAdmin which is used for managing MySQL databases. On the left hand side you need to select a database. Once selected in the main window click on SQL and then in the big text box which shows up copy and paste the above code. Then click go.
danielneriWP V.I.P.VPS - Virtual Prince of the Server
If you use C-panel just go to mysql databases and it will give you the connection string for the database you want to connect to. or you could just make a new one?
^^ Exactly... although that wont let you know what your password is...Only the database name and user will be shown...
If your unsure create a new database, then a new user and add the user to the database with all privelages - all this is done on that MySQL databases page
Was this script taken down? Everytime I click the link it takes me to the main forums page.
Your right Geekmation. We had a hosting crash in June of this year in which some data was lost including the link your trying to access. See this thread for more details about our crash: http://www.webmasterpost.com/forum/showthread.php?t=2721
Comments
Let us know and maybe we can help...
The Royal Ram
^ Habbo-Tech Australia ^
First of all you need to create the tables. The code is given for that...
Go into your cPanel or whatever control hosting panel your using and try to find the MySQL databases icon. Click into that and then at the bottom of the page you will find a phpMyAdmin link. Click on that. This brings up phpMyAdmin which is used for managing MySQL databases. On the left hand side you need to select a database. Once selected in the main window click on SQL and then in the big text box which shows up copy and paste the above code. Then click go.
And that will then create the tables...
The Royal Ram
One More Question, How Do I Know What The Database password And Username Is?
^ Habbo-Tech Australia ^
p.s. MY 300th POST :D:D
If your unsure create a new database, then a new user and add the user to the database with all privelages - all this is done on that MySQL databases page
The Royal Ram
^ Habbo-Tech Australia ^
is there another tutorial & script of this type of coding?
I need something that will let my users login and I can make a custom page for person(s) and/or groups.
-xPureNLx