Hi, i hope that english is ok for you

. As i use mysql/php/phpmyadmin with backbox i will write you small how to. If you need more i will make you video tutorial for (one day

) ...
1.sudo -i (after this you don't need to type sudo again)
2.apt-get install mysql-server (you don't need to type version, he will install last one)
mysql_install_db
3.apt-get install php5
4.apt-get install php5-mysql (this is modul that you need to have if you want to use PHP5 with mysql)
5.apt-get install phpmyadmin
Now we need to set apache config file :
1. sudo geany /etc/apache2/apache2.conf
Now add to config file (you can put this in the end) :
#PHP for apache
AddType application/x-httpd-php .html
Include /etc/phpmyadmin/apache.conf
2.Now restart Apache:
sudo /etc/init.d/apache2 restart
Now. Open mozilla and go to
http://localhost/phpmyadminAnd you are done.
If you want to make new mysql base and new user for it with all privileges :
mysql -u root -p (or mysql -u backbox -p)
CREATE DATABASE wordpress;
CREATE USER zerof;
SET PASSWORD FOR ZEROF = PASSWORD('Serbia');
GRANT ALL PRIVILEGES ON wordpress.* TO ZEROF@localhost IDENTIFIED BY ‘Serbia’;
exit;
And, have a nice day
