You could use GET requests to distinguish the levels. I'll make a simplish example using php below...
webpage is: http://www.site.com/index.php
on this page
PHP Code:
<a href="?level=begin">Beginner</a>
<a href="?level=int">Intermediate</a>
<a href="?level=advance">advance</a>
<div id="content">
<?php
if(isset($_GET['level'])) {
$page_load = $_GET['level'];
if ($page_load == "int" || $page_load == "advance" || $page_load == "begin") {
include($page_load . ".php");
}
}
?>
</div>
The assumes you have 3 files begin.php, int.php, and advance.php with the specific content to each. For a more detail answer please post a link or code.
Last edited by bluewalrus; 06-24-2010 at 02:55 PM.
Corrections to my coding/thoughts welcome.
Bookmarks