// How to pass arguments to an included file?
function includeFileWithVariables($fileName, $variablesArray) {
extract($variablesArray);
include($fileName);
}
$my_header = 'aaaaaaaaaaaaaaaaaaaa';
include 'header.php';
// http://stackoverflow.com/questions/4315271/how-to-pass-arguments-to-an-included-file