Hi there everyone,
This code works fine until I put it into my function, then it still works BUT however
many lines are in the file are multiplied. For example, if I have 3 lines with the
following:
[EMAIL PROTECTED], myname
[EMAIL PROTECTED], yourname
[EMAIL PROTECTED], ourname
In THEORY thi
Anybody know what might be wrong with this function?
My first version of the function was...
function Include_Lib($libFile)
{
include(LIB_DIR.$libFile);
}
but it didn't work so I simplied it...
function Include_Lib()
{
include("/path/generic_vars.phpi");
}
// Function call
Incl