} else {
    //Si la noticia esta creada la insertamos
    if ($_REQUEST["nombreNoticia"] != null) {
        $nombreNoticia = $_REQUEST["nombreNoticia"];
        $descripcionNoticia = $_REQUEST["noticia"];
        $urlNoticia = $_REQUEST["urlNoticia"];
        //Variable guardamos si hay noticia repetida
        $notiRepetida = false;
        for ($i = 0; $vectorNoticias[$i] != null && $notiRepetida == false; $i++) {
            //Si hay una noticia con el mismo titulo no permitimos insertar
            if ($vectorNoticias[$i]['titulo'] == $nombreNoticia) {
                $notiRepetida = true;
            }
        }
        if (!$notiRepetida) {
            $noticia->insertarNoticia($nombreNoticia, $descripcionNoticia, $urlNoticia);
        } else {
            echo '<script>
                        alert("Error noticia repetida");
                      </script>';
        }
        header("Location: index.php");
    }
    //Si se ha intentado elminar una noticia
    if ($_REQUEST["casilla"] != null) {
        $x = $_REQUEST["casilla"];
        //Seleccionamos la parte del titulo del vector casilla
        $x = $x['0'];
        //elimino la casilla seleccionada
        $noticia->eliminarNoticia($x);
        header("Location: index.php");