I am sending tamil text from a form to php script but php is not recognize that.
Html Code
<form action="insert_into_db.php" method="post">
<textarea name="message" class="form-control message-box" rows="5" id="comment" placeholder="enter your message here"></textarea>
</form>
PHP code in insert_into_db.php
<?php
$message = $_POST['message'];
echo $message;
User Input :- இந்த டெமோ செய்தி உள்ளது
Output :- இநà¯à®¤ டெமோ செயà¯à®¤à®¿ உளà¯à®³à®¤à¯
expected output :- இந்த டெமோ செய்தி உள்ளது
Please help me Thanks in advance