Hi all:
I'm in the process of securing my new web project and I'm moving all of the meaningful code out of the document tree and replacing it with 3 line php files that are basicly
<?php
require ("c:\dirpath\asdf.php");
?>
Is there any value in replacing c:\dirpath with a variable? If so, is there a way to define that variable in php.ini so I don't have to set it anywhere in the code?
I suppose that it's maybe needless obfuscation (sp) but every little bit helps I guess.