<head>
<meta charset="ISO-8859-7">
</head>
I've been working with forms and see that the <meta charset="ISO-8859-7"> tag encode the text that will be typed within a text area. Thing that the encoding method used to store the file isn't does.
I've saw that if a character typed isn't part of the encoding speciefied by the <meta charset="ISO-8859-7"> tag, the character will be referenced (&#D;)
I was supposing that the form was sending bytes sequences from the encoding speciefied. Cuz if i type a character whatever it is, will be a byte that an encoding will interpret.
For example with the <meta charset="ISO-8859-7">
i type in a form the character "¥"
This char isn't part of the encoding but it must send as a byte of the position that it represents A5, no matter if it can be represented (This is maked normally by any editor).
But not, the form don't send it as a byte, rather the character is referenced.
Code:
index.php:
<?php header('Content-Type: text/html; charset=ISO-8859-7'); ?>
<head>
<meta charset="ISO-8859-7">
</head>
<form method="post" action="encode.php" accept-charset="ISO-8859-7">
<p><textarea name="input" maxlength="10" rows="5" cols="100"></textarea></p>
<p><button>Submit</button></p>
</form>
encode.php:
<head>
<meta charset="ISO-8859-7"><!-- Useless, Even if is specified the ISO-8859-1 where the "¥" exist, the form sended a reference char rather an a byte to interpret.-->
</head>
<?php
$input=$_POST["input"];
var_dump($input);
?>
Result in Sourcecode:
string(6) "¥"
Note: I've tested changing the Encoding used to store the file.
in the index.php:
Doesn't matter what encoding is used to store the file, the form always will send accordingly with the accept-charset="" attribute or with the <meta charset=""> tag if the accept-charset="" is not specified.
And with the encode.php: The string is never encoded by the file. Can be worked and represented, but the encoding used to store the file has nothing to do with that.
Content-Typeheader be sending a conflicting character set? – cbuckley Jul 21 '11 at 22:28<?php header('Content-Type: text/html; charset=ISO-8859-7'); ?>and still the same. – nEAnnam Jul 21 '11 at 22:39enctype="multipart/form-data"on the form won't go amiss either. – cbuckley Jul 21 '11 at 22:40