Remove MySQL user and database

You can remove users and databases in MySQL eg. via phpMyAdmin or from Command Line Client as shown here.

mysql> DROP USER myuser@localhost; [Enter]
mysql> DROP DATABASE mydatabase; [Enter]

Done :)