From what I remember of my past experiences with included files, variables are passed seamlessly between the included and parent files.
I just ran a test:
File 1: Parent file
<?php
$tmp = 4;
include ("temp2.php3");
echo "Changed variable: " .$tmp . "<BR>";
?>
File 2: "temp2.php3" - included file
<?php
echo "Included: " . $tmp . "<BR>";
$tmp++;
?>
Returned:
Included: 4
Changed variable: 5
So, no parameters need be sent.