Código PHP:
Ver original<?php
$ver=(isset($_GET['ver'])) ?
$_GET['ver'] : '';; $id=(isset($_GET['id'])) ?
$_GET['id'] : 0; switch ($ver) {
case inicio:
include("default.php");
break;
case noticias:
// revisa si vas a mostrar el indice de noticias o se selecciono una noticia
if($id == 0) {
include("noticias.php");
} else {
// Solo necesitarias revisar si existe el archivo de noticia antes de tratar de incluirlo
include "new{$id}.php";
}
break;
case info:
include("informacion.php");
break;
case contacto:
include("contacto.php");
break;
case feed2:
include("enviar.php");
break;
case mails:
include("mails.php");
break;
default:
include("default.php");
}