Today I will show you how to successfuly install phpmyadmin in your website:

1. Login to your server Linux Shell. I will be using SSH.

2. Change Directory - cd to the directory where you want phpmyadmin to be installed.
EXAMPLE:
CODE:
cd /var/www/html/


3. Download a copy of the latest release at:
QUOTE:
http://www.phpmyadmin.net

(TIP: you can usge wget to download a copy to your server)


4. Once you have downloaded it, uncompress it with this command:
CODE:
tar -xzvf phpMyAdmin_x.x.x.tar.gz


5. Once the tarball has been unpacked, It will create a directory called "phpMyAdmin"

6. Open your browser enter the url of your website where you unpacked phpMyAdmin.
Example:
QUOTE:
http://www.mysite.com/phpMyAdmin/scripts/setup.php


7. The setup form will appear. Now enter the required information like your username, password and hostname:

Done