Found this in the manual, I understand it, but what if I was passing variables to the php file that has the includes in it? How do I get the variables that I am passing to that php file to be included into the "includes" if it can't be written as line 1?? This is driving me crazy, any help would be greatly appreciated!!!
1 include ("file.inc?varone=1&vartwo=2"); / Won't work. /
2
3 $varone = 1;
4 $vartwo = 2;
5 include ("file.inc"); / $varone and $vartwo will be available in file.inc /