else if($_GET['p']=="page.php?openpage='".$row[0]."'"){
include("page.php?openpage='".$row[0]."'");
}
Row 0 is the page ID of the page I want to include. The page ID will be some random number.
Heres the link:
<A HREF='home.php?p=page.php?openpage=".$row[0]."'>
Bascially, the correct page ID/address comes up in the address bar, but it fails to include the page, I guess because it doesnt recognise it as the page its been told to include?
Anyone know why?