I'm using this current PHP Code in my Index.php;
<?php $page = $_GET['page'];
if (!isset($page)) {
include('home.php');
}
if ($page == "Home") {
include('home.php');
}
if ($page == "0101") {
include('0101.php');
}
if ($page == "0202") {
include('0202.php');
}
?>
Then I'm using this for my Navigation link;
<li><a href="?page=0101">Members</a></li>
Which displays as
index.php?page=0101
But on those pages I want to go into another page off of them, for example;
index.php?page=0101&subpage=0102
index.php?page=0202&subpage=0201
How can I achieve this?