In my script, I choose which page to include based on a variable.
Does the included page receive the variables that are defined in the main page? Or so I have to redefine them?
If so, what’s the best way to pass the variables to the included page?
I tried include(“page.php?var=”.$var)
But it seems that actually tries to include a file with that string name.
Advice?
If you define you variable before include page, you don’t need any query string. Your variable will be accessed in the included page with just name. for example
then in
page.php