Table of Contents

Using phpMyAdmin

Greetings mortal!

Below you'll find a (small) manual which will explain a few things about the use of phpmyadmin.
This manual has been made by using the following version:

img25.imageshack.us_img25_3766_phpmyadminm.jpg As time will tell this manual might grow into something more larger. As for now this manual will only concentrate on the use of phpMyAdmin, not the installation for it!

Before we can begin we will have to browse to the machine (http://IP/phpmyadmin/ also look at the picture to the right) and login to be able to use anything phpmyadmin has to offer. We will use the root user mostly for the creation of new users. For the creation of databases we will use the user with the correct rights.

1. Users

1.1. Create

img25.imageshack.us_img25_821_pmausers01.jpg First, we'll have to login as root. Browse towards your phpmyadmin webpage (usually done by going to http://<ip address/hostname>/phpmyadmin.
Login as root here, giving the username and password.

Next we are going to the page that is called “privileges” (right screen).
This screen will show what users are already present on the system with several key information pieces which could be usefull at some time.

Since we are just adding users we can click on “Add a new User” (screenshot) and enter the next screen again.



Once on this page we will have to fill in several fields: (right screen). img9.imageshack.us_img9_2452_pmausers03.jpg

After hitting 'Go' you will see a screen that looks like this telling you the user has been created.
Congrats! You can now use this user!

2. Databases

This chapter will explain certain options you can do with a database.
In the example screenshots we will always use the username '1username' with password '0123456789x'.

2.1. Create

There are 2 ways of creating a database:

1. With root
Normally a user won't have any rights to create any database itself. In which case you will have to ask someone with root access to create you a database.
This can also be done yourself, in which case you will have to create the database, edit the privileges of the user and add the user to the newly created database with rights.

2. With a user itself
If the person who gave you an account (or you have made it yourself) and that user has been created with the option '”Grant all privileges on wilcard name (username\_%)” ', this user will be able to create it's own databases.

I will explain the second possibility, with the user itself, below.

img4.imageshack.us_img4_7237_pmadbcreate01.jpg img16.imageshack.us_img16_4499_pmadbcreate02.jpg First, again, lets go to the phpmyadmin page via a browser. Use your login and password and hit enter (I'm using the login: 1username for the purpose of this manual).

Next in line would be the creation of a database. The browser will already show you the text '1username_…' inside the database creation text box. Lets create a database with the suffix 'hlx'. To do this change the text that is already present in the box to '1username_hlx' and press 'Create' (left screen). A new screen will open showing you that the database has been created succesfully (right screen).



Congrats, you have now created a database with the user '1username'!

2.2. Adjust

N/A for now, will be filled later.

2.3. Import

PhpMyAdmin gives you the possiblity to import sql files into already excisting databases. Again, in order to do this you should login as the user with the correct database privileges (for this manual that would '1username' again). The left side of the phpmyadmin screen in the browser shows all the current databases the user has access to. Next to that it also shows the amount of tables the database is setup with. In the example screenshot to the right you will be able to see several databases for the user with 0 tables.

img23.imageshack.us_img23_6573_pmadbimport01.jpg img21.imageshack.us_img21_8184_pmadbimport02.jpg There are several ways of accessing a databse. In this manual I will just use a simple example and go from there. We will be using the database called '1username_hlx' as an example.
First it is important to select the database you want to update. This can be done by simply using your mouse to hover over the name, in phpmyadmin, on the left side of the screen and clicking on the database name (screen left).

This will open a new screen, with the current database selected on the left side. On the right, click on the tab that is called 'Import'. This will show you a screen with several import options (screen right). Click the browse button (or w/e it might be called in your language) and select the .sql file you wish to import into the current database. After selecting the file and pressing 'Go' you will get a screen with all the sql commands it executed.

Congrats! You have just imported a sql file into the database '1username_hlx'.

3. Other...

This chapter is just a placeholder and will be expanded / replaced over time.

Used pictures

Used Pictures:
Create user: 1 2 3 4
Create database: 5 6
Import database: 7 8