Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/01/2013, 13:01
Avatar de Tzar
Tzar
 
Fecha de Ingreso: enero-2013
Ubicación: CABA Argentina
Mensajes: 68
Antigüedad: 11 años, 10 meses
Puntos: 3
Respuesta: porque no me valida ñ ni acentos

Cita:
Iniciado por andres_15_ Ver Mensaje
tengo el siguiente código

Código HTML:
<html>
<head>
	
			<style> 
				@import url("../Vistas/vistaempleadonuevo.css"); 
			</style>
	<title>Nuevos Empleados</title>

</head>
<body>
	<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
	<!--placeholder="dd/mm/aa">-->

	<form action="../Ingresar/nuevoempleado.php" method="post">

		<label for="id">
			Ingrese el número de identificación <input type="text" name="id" id="id">
		</label>

		<label for="fecha">		
			Fecha de expedición <input type="text" name="fechaexpedi" id="fecha" placeholder="año/mes/día">
		</label>


		<label for="id">
			<input type="submit" value="nuevoempleado">
		</label>

	</form>

</body>
</html> 
he puesto el meta en el title, pero al colocarlo ahi en el titulo me sale dicha etiqueta pero si valida las ñ's y acentos. lo puse en el head y tampoco los valida porque sera.
Tendrías que agregar la línea
Código HTML:
Ver original
  1. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">

y te quedaría algo como:

Código HTML:
<html>
<head>
	<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
			<style> 
				@import url("../Vistas/vistaempleadonuevo.css"); 
			</style>
	<title>Nuevos Empleados</title>

</head>
<body>
	<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
	<!--placeholder="dd/mm/aa">-->

	<form action="../Ingresar/nuevoempleado.php" method="post">

		<label for="id">
			Ingrese el número de identificación <input type="text" name="id" id="id">
		</label>

		<label for="fecha">		
			Fecha de expedición <input type="text" name="fechaexpedi" id="fecha" placeholder="año/mes/día">
		</label>


		<label for="id">
			<input type="submit" value="nuevoempleado">
		</label>

	</form>

</body>
</html>