HI,
I have constructed links to my pages but I can't solve this little
problem something like index.php?page=anything. The links worked fine. But in the main index.php there is a little error.
Notice: Undefined index: page in C:\My Documents\dualnew\index.php on line 2
I don't know to solve it.
<?php
switch($_GET['page']) {
case "page1":
include('page1.php');
break;
case "page2":
include('page2.php');
break;
default:
require_once('index.inc'); //this will be the opening page
}
?>
Suggestions anyone?