Hi There folks.
I was thinking of trying to make a php function in my sites configuration file so that I could keep all mysql database info in one central file.
I should mention that this is the first time I have tried to make my own function.
I have the file started, but can't get it to work like I'd hoped.
Is it possible to set a variable like
$username = "";
in a function and be able to insert that into a file.
I'd assumed that I would call the function and it would set the variable, but so far it hasn't worked.
Here is what I have
function &configDB($db)
{
if($db=='calendar')
{
$cfg[host] = "localhost";
$cfg[user] = "MyDBs";
$cfg[pass] = "Pass";
$cfg[database] = "MyDB1";
}else
{
$server = "localhost";
$dbusername = "MyDBs";
$dbpassword = "Pass";
$db_name = "MyDB2";
}
}
Then Call it by
configDB('main');
Would this be correct.
Help in passing variables would be appreciated.