GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Stupid question : How to create a MY SQL database (https://gfy.com/showthread.php?t=221256)

Doctor Dre 01-15-2004 09:57 AM

Stupid question : How to create a MY SQL database
 
How to create a MySQL database under windows . Trying to install v bulletin on a windows machine . Never done that b4.

JamesK 01-15-2004 10:00 AM

install php and mysql on it.

jwerd 01-15-2004 10:02 AM

Download MySQL, install it - set it all up...then download phpmyadmin (www.phpmyadmin.net)...I reccomend using Apache (www.apache.org) for the web server... and of course you will need PHP (www.php.net)...then you're set!

Doctor Dre 01-15-2004 10:04 AM

I already got everything I need installed. What I need is too create a database.

extreme 01-15-2004 01:08 PM

mysql> create database x;
mysql> show databases;
mysql> grant all on x.* to drdre identified by 'hellyeah';

?

yanglike 01-15-2004 01:18 PM

from your admin cpanel or whatever you are using you might have access to phpMyAdmin... that is easiest way for you to create a database.

if not then open up a php page in your browser and put that code in :
mysql_query("CREATE TABLE my_table");

FrankWhite 01-15-2004 01:21 PM

/usr/local/mysql/bin/mysql -u root -p
create database databasenamegoeshere;
GRANT SELECT,ALTER,INSERT,UPDATE,DELETE,CREATE,DROP ON databasenamegoeshere.* TO usernamegoeshere@localhost IDENTIFIED BY 'passwordgoeshere';


All times are GMT -7. The time now is 02:55 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123