Forum Moderators: coopster
PhpMyAdmin is really an admin tool, as the name suggests, not a DB interface per se, so usually it is set up with full privileges on all your DBs (or as root if you are the only one on a given server).
If you do not run your own server I doubt that you will have access to those options
I`m not really 100% sure if you can actually assign different logins to different people though. It may only be for the webmaster to access.
Let us know how you go.
dc
you can even identify only a table:
mysql>GRANT ALL PRIVILEGES ON database_name.table_name
TO your_user@localhost IDENTIFIED BY 'any_password';
Not happy with the user!
mysql>REVOKE ALL PRIVILEGES ON *.* FROM your_user;
I'm also not sure where to put that code that you provided, but I did grant a new user with all privileges using cpanel. I just dont see the point in this becuase I don't see where to actually login.
What are you trying to achieve?
Giving full access to managing you database to a new admin
Or granting for example mod privileges to a forum user?
As far as PHPmyAdmin login is concerned you are probably not asked to log because you are recognized as the empowered admin
Or you did not set an admin PW which is ok if you are testing localhost on your local machine but VERY dangerous on a production server.
What are you trying to achieve?
Giving full access to managing you database to a new admin Or granting for example mod privileges to a forum user?
The first one.
I created a user and login with all privileges to just "one" database only, out of the 3 or 4 that I have. So, where is the login box for that user to log into the standalone phpmyadmin and only see the one database in phpmyadmin, not the 3 or 4 that I have or will have?
I never cared about this before, but I have someone willing to help me keep up with the forum and sql data, and I only want him to see the forum database, not all my other databases in phpmyadmin.