I'm working on a file and got a problem with undefined variables...
my index file is:
<?
Include 'config.php';
Include 'functions.php';
Include 'auth.php';
code...
?>
In config.php, I state
$pre = "prefix";
but it makes a warning of undefined variable pre in functions.php when I run the index file.. Can anyone help me ?
Wacky