Thanks folks for your replies.
I had the following in a function:
function testing()
{
$_REQUEST['do']=...;
include('./filename.php');
print "Include VAR: " . $var . "<br /><br />\n";
return;
}
I didn't get an error nor did the file seem to execute since I didn't get any results in the test print statement for one of the variables that should have been set within that included file. I'm not sure where to go with this other than cutting and pasting the code I'm after and getting the results that way... 😕
Thanks again.