First of all, as Alex said, you should be using a special account for that application with limited privileges.
After that, take a look at this How To secure passwords in PHP where you will find answers like:
User11318:
Several period misread this as a
question about how to store passwords
in a database. That is wrong. It is
about how to store the password that
lets you get to the database.
The usual solution is to move the
password out of source-code into a
configuration file. Then leave
administration and securing that
configuration file up to your system
administrators. That way developers do
not need to know anything about the
production passwords, and there is no
record of the password in your
source-control.
da5id:
Store them in a file outside web root.
Sockleg:
If you're hosting on someone else's
server and don't have access outside
your webroot, you can always put your
password and/or database connection in
a file and then lock the file using a
.htaccess:
<Files mypasswdfile>
Order Allow, Deny
Deny from all
</files>
pdavis:
For extremely secure systems we
encrypt the database password in a
configuration file (which itself is
secured by the system administrator).
On application/server startup the
application then prompts the system
administrator for the decryption key.
The database password is then read
from the config file, decrypted, and
stored in memory for future use. Still
not 100% secure since it is stored in
memory decrypted, but you have to call
it 'secure enough' at some point!
Vagner:
Your choices are kind of limited as as
you say you need the password to
access the database. One general
approach is to store the username and
password in a seperate configuration
file rather than the main script. Then
be sure to store that outside the main
web tree. That was if there is a web
configuration problem that leaves your
php files being simply displayed as
text rather than being executed you
haven't exposed the password.
Other than that you are on the right
lines with minimal access for the
account being used. Add to that
- Don't use the combination of username/password for anything else
- Configure the database server to only accept connections from the web
host for that user (localhost is even
better if the DB is on the same
machine) That way even if the
credentials are exposed they are no
use to anyone unless they have other
access to the machine.
- Obfuscate the password (even ROT13 will do) it won't put up much
defense if some does get access to the
file, but at least it will prevent
casual viewing of it.
Peter
References: