¡Buenas tardes a todos!
Estoy comenzando con Perl y con CGI. Tengo un programa en Perl cuya salida en HTML no me imprime en caracteres utf8. Os dejo el código HTML y el código CGI.
Primero el html (prueba.html):
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<html>
<head>
<title>Prueba de CGI</title>
</head>
<body>
<p>Pregunta lo que quieras saber</p>
<form method="POST" action="http://localhost/cgi-bin/prueba.cgi">
<p><input type="text" name="consulta" size=36><input type="submit" value="Enviar"></p>
</form>
</body>
</html>
Ahora el programa CGI (prueba.cgi) ...