Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Starting a DB in mysql

Status
Not open for further replies.

shanenewbe

Technical User
May 19, 2005
16
GB
Hi, i have worked with DB before but not with mysql and not on this level.

i need to create a DB for a forum i have downloaded, but where to start?

Hi all,

I am using apache2triad php,mysql and am hosting my own website. I am hoping to start a forum and have downloaded one from phpbb. But I have to create a DB before I can install the forum.

Can anyone give some advise on where to start.

Many thanks

Shane
 
[root@localhost ~]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2 to server version: 4.1.14

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> create database something;
Query OK, 1 row affected (0.03 sec)


mysql> show databases;
+-----------+
| Database |
+-----------+
| mysql |
| something |
| test |
+-----------+
3 rows in set (0.00 sec)

easy innit.
the tell phpbb to use something and youre done iirc.

______________________________________________________________________
There's no present like the time, they say. - Henry's Cat.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top