Thanks man! Thats exactly what I am looking for... but now I am having another issue...
I have 3 files...
/includes/config.php
/includes/function_player.php
/player.php
2 variables are declared and set in config.php:
$countEmod and
$countDmod...
config.php and function_player.php are called in /player.php with
Code:
require_once('./includes/config.php');
require_once('./includes/functions_player.php');
Then inside /player.php, I am calling up a function in functions_player.php
Code:
fetch_player($player);
So far, everything works great... however, inside the
fetch_player function, I try to use those two global variables...
$countEmod and
$countDmod... Unfortunately, this doesn't work. The function doesn't recieve values for these variables. I have tried adding a require_once for the config file inside the functions file, but that too doesn't work.
Is there something I have to do, to get the global variables to work inside the function?