May I assume that you are all worried about this because it will affect your database? I can't really think of other reasons to be concerned.
MySQL (at least on linux) can restrict access to certain hosts. For example, I have a 'phpuser' login to my MySQL server from 'localhost'. I also have a login for my desktop's host with the same username and password. Any other host attempting to connect (even if they have the correct username and password) will be unsuccessful. In fact, I was myself (from my desktop) until I noticed this and added the new user.
So if you restrict your access to localhost, (I rarely use my desktop to connect to my database) and just SSH into your server to run the MySQL client from there (for backend database access), you should be fine. Even if someone gets your script and attempts some malicious scripts.
If there is another reason to protect your hidden values, may I suggest session variables?
--kinadian