How to install PHPMyAdmin on Ubuntu 16.04

MySQL is hard to deal with in case you don’t know SQL queries. For example, If you want to select a user that has specific email address [email protected] from users table, You will have to execute the following query in your MySQL console to select a record. mysql> SELECT * from users where email=’[email protected]’;` It is the […]