Page is a not externally linkable
helenp - 8:05 pm on Jul 29, 2011 (gmt 0)
Converted everything except database and links in some files (all includes converted, and still dont work when filling in a form.
To test, I did a small cgi form the host offer,
this is the code of the page, no includes, no databases nothing:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<FORM ACTION="http://mydomain.com/cgi-sys/FormMail.cgi" METHOD="POST" accept-charset="UTF-8">
<input type=hidden name="recipient" value="info@mydomain.com">
<input type=hidden name="subject" value="Asunto del mail que se envia">
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2">Nombre:<br>
<input type="text" name="nombre" size="25" maxlength="300">
</font></td>
<td> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">Email:<br>
<input type="text" name="email" size="25" maxlength="300">
</font></td>
</tr>
<tr>
<td colspan="2">
<div align="center"><br>
<input type="submit" value="Enviar">
</td>
</tr>
</table>
</form>
</body>
</html>
This I wrote in the form: cañon guía åäö
This was the result in the cgi page:
Form Submission Results
nombre: cañon guía åäö
Everything looks ok.
However I receive the email like this:
nombre: cañon guÃa åäö
Whats wrong?
Please and thanks.