I am working out a new template for my site, and I want to use includes so that I never have to touch the template files, just the content files. I want to pass a varriable through the url, like http://www.myserver.com/index2.php3?page=test.html
In index2.php3 I have it set up to include the page that is called through the url
<?
include("$GET_['page'];
?>
I've also tried to echo the $GET_ statement into a varriable, as well as into the include statement. I've tried taking out quotes, changing quotes, and pretty much everything else possilbe. Any help would be most appreciated.
Thanks.