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 example@gmail.net 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=’example@gmail.net’;` It is the […]