I'm not very strong in HTML, and each time I have some encoding problems.
Here, I have a form like :
<head>
<META http-equiv="Content-Type" Content="text/html; charset=ISO-8859-1">
[...]
<form method="post" action="thispage.php" >
<input name="title" type="text" id="title" size=75 value="" />
<textarea name="description" rows="10" cols="80" id="description"></textarea>
<input type="submit" value="GO" />
</form>
When I write some quotes, like: '
, it would arrive as \'
So o'clock
will be o\'clock
Do you have an idea?
EDIT :
The strange thing is that quotes are not escaped in POST variables, according to firebug !