I may be wrong, I've never tried this, but it may be possible to just assign a value to the variable before you include the page.
PHP Code:
$x = 1;
include('pagewithx.php');
If that doesn't work you may want to try adding your variable to the global vars before you include the page and do the same thing.
Last edited by NullPointer; 02-14-2008 at 12:40 PM..
|