Pues debería, el código esta bien excepto por lo que te ha comentado @0roch1. Deberías revisar si tienes mas document.write en algún lado (ya que se sobre-escriben) o la forma en la que estas ejecutando el script.
Saludos
Saludos
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú/* Banner */
.cuadroBanner{
border-radius: 15px 15px 15px 15px;
background: #8AC007;
padding: 20px;
width: 800px;
height: 50px;
}
/* Menu */
nav{
border-radius: 15px 15px 15px 15px;
background: #8AC007;
padding: 20px;
width: 130px;
height: 100px;
}
nav ul{
list-style:none;
margin:0 10px 0 10px;
padding:0;
}
nav ul li{
font-family:Arial, Helvetica, sans-serif;
font-size:16px;
color:black;
}
nav ul li:hover{
font-weight: bold;
}
nav ul li a{
color:black;
text-decoration:none;
}
<h1 class="cuadroBanner">
Mi primer ejercicio 12-09-2015</h1>
<nav>
<ul>
<li><a href="index.jsp">Inicio</a></li>
<li><a href="presentacion.jsp">Mis datos</a></li>
<li><a href="calculadora.jsp">Calculadora</a></li>
<li><a href="oneParam.jsp">Un parametro</a></li>
<li><a href="multiParams.jsp">Multiparametros</a></li>
</ul>
</nav>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="mi-pagina.css">
<title>JSP Page</title>
</head>
<body>
<%@ include file="banner.jsp" %>
<%@ include file="menu.jsp" %>
<h1>Primer pagina jsp con datos para probar lo aprendido<br> esperemos se vea bien en el navegador</h1>
</body>
</html>
/* Ambos van a flotar a la izquierda */
#menu, #contenido { float: left; margin: 0px; }
/* El contenido estara separado por 10px de menu */
#contenido { margin-left: 10px; }
/* Limpiaremos las piezas flotantes */
.clear { clear:both; }
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="mi-pagina.css">
<title>JSP Page</title>
</head>
<body>
<%@ include file="banner.jsp" %>
<div id='menu'> <%@ include file="menu.jsp" %> </div>
<div id='contenido'>
<h1>Primer pagina jsp con datos para probar lo aprendido<br> esperemos se vea bien en el navegador</h1>
</div>
<div class='clear'></div>
</body>
</html>
function check_empty(array $args, $method='get'){
foreach($args as $arg){
switch($method){
case 'post':
if(empty($_POST[$arg])){ return false; }
break;
case 'get': default:
if(empty($_GET[$arg])){ return false; }
break;
}
}
return true;
}
$check = array('username','credits','vip_points');
if(!check_empty($check, 'post')){
echo 'No has completado alguno de los campos obligatorios.';
return null;
}