Donaciones
Esta es la pagina de las donaciones
';
$page[2] = '
Documentacion
Esta es la pagina de la documentacion.
';
$page[3] = '
Wiki
Esta es la pagina de la wiki.
';
$page[4] = '
Foros
Esta es la pagina de los foros.';
// Initialize variables
if ( isset($_GET['p']) ) {
// If $_GET['p'] is set the content shown is the pages one.
$id = htmlspecialchars($_GET['p']);
echo $page[$id];
}
else
{
// If $_GET['p'] is not set the content shown is the entries's loop.
echo get_html_err();
}
// Validate id value
?>