Hi Everyone,
Does anyone know how to get all the variables parsed to a function without declaring them in the function call?
Basically, i want to add parameters to function that you dont have to use. Rather than do something like:
// Call Function
MyFunction('','','');
I'd prefer to do:
// Call Function
MyFunction();
// Declare function
function MyFunction();
{
$param1 = $paramArray[0];
}
or something like that...
Cheers,
steve