Is it possible to use a querystring in the include() function?
I am trying to do....
case "option one":
include ('file.php?option=one');
break;
case "option two":
include ('file.php?option=two');
break;
... but get a failed opening for inclusion error.
Thanks
lil_geek