I am aware of how to grant a user access to only one database using phpMyAdmin, and I am aware of how to give a user access to create a new database using phpMyAdmin (using the Create privilege).
However, granting the Create privilege to a user also allows them to see all databases. Is there a way to allow users to create databases, but only view the databases that they have created?
I realise that this can be done with actual PHP / MySQL queries when creating the database (i.e. GRANT
, also see here), however can it be done using only the phpMyAdmin interface (thus I also don't want answers involving a different interface)?