You can send the ISP admin a message having him to
mysqladmin -uroot password 'password'
have him
$ mysql mysql -uuserid -p
mysql> revoke all on . dbuser@localhost
for EVERY user on the system (mysql users)
then give each user permission to their database
have him/her
mysql> grant insert, select, delete,update on userdbs.* to user@localhost identified by 'password'
Point him to the mysql documents or see if you can get paid to manage his database system, since they seem to just install and go...
I'm sure he/she would be pleased... this
I wrote a application designed to manage the mysql user/permission system using php
If interested goto
http://pccs-linux.com/public/list.php3?bn=agora_pccslinux
MySQLDatabase Admin Tool
The SQL syntax was written on the fly, you may have to RTM
HTH
CT