Navegação do site PHP

Navegação à prova de idiotas no site com base na função de caso do PHP: <?php//usage: nava.php?page={case}switch($_GET[‘page’]){default: //the default page case include(‘index.php’);break;case ‘about’:include(‘pages/about.php’); //relative to the filebreak;case ‘downloads’:include(‘/var/www/othersite.com/pages/download.php’); //absolute files …

Continuar lendo