Cita:
Iniciado por andres_15_ 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<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>