Forum Moderators: coopster
var w = window.open("");
w.document.write('<form action="test.php"><textarea name="a"></textarea><input type="submit"></form>');
in test.php:
echo $_POST['a'];
echo ord($_POST['a']);
i get every multibyte chars replaced into '?' and 63 (ascii code)
how can i solve this problem