Hello

If I have a file called db.inc with, for example, this:

<?php
// db.inc
$user = "david";
$pass = "password";

?>

I have a my index.php do a include('db.inc');
ok, that works.

However, any user on the system can read db.inc cause its chmod'd 0644.
If I chmod db.inc 0600 or even 0640, index.php can not include it.

How do I go about protecting my files from being read by users on the system?

Thanks
- David

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to