i have something like this:
$misc[include] = $var;
and this line turns up a parse error no matter where i put it. i change it to this:
$misc[inc] = $var;
no problem. parses fine. now i use $misc[include] all over my script, but when i asign it at the end, then i get the parse error. i am changing everything to $misc[inc] but can anyone tell me why it does this?
just curious.