okay, i have a function like this:
function readfile($location, $var)
{
...
}
now i want to call the function and this is what i have:
$file = readfile($misc[include]."/file.inc", "1");
okay, now the $misc[include] is my include directory. it gives me a parse error though, and i have tried many ways with no avail. is there anyway around this aside from setting a variable with the pathname?
thanks in advance.