Hi guys
I've a basic question in php:
I've 2 files: An html form with a textarea and a php file. All I want is to print the text the user types after submit is pressed. It all goes well when only english characters are typed but I get gibberish when I type arabic or chinese for instance. Is there a way to display all the characters?
Here is the code of the php file:
<?php
$txt = $_GET['toTranslate'];
echo $txt;
?>