Hey guys
I have set up my home web server and i am getting an error when i moved my site
Notice: Undefined index: page in c:\public\snowx\index.php on line 103
the code i am useing is
<?
$pages =array("home","contact","downloads","information","extra");
if($_GET['page'])
{
for($i=0;$i<count($pages);$i++)
{
if(strtolower($_GET['page']) == $pages[$i])
{
include($pages[$i].".php");
}
}
}
else {
include("home.php");
}
?>
any help whould be awsome thanks 🙂