Published in: PHP
// home.php?act=index <?php else $PAGEACTION = 'index'; switch ($PAGEACTION) { // index page case 'index': include ('index.php'); break; // an about page case 'about': include ('about.php'); break; // $PAGEACTION doesn't exist default: // or just forward to home.php?act=index echo "page does not exist"; break; } ?>
You need to login to post a comment.
