I have tested the site that my team is building using Latin characters. It works perfectly.
When I inserted some Tamil characters, it is stored successfully by passing through a form to a mysql database with the following characters in paranthesis (&# 2951;&# 2984;&# 3021;&# 2980;&# 3007;&# 2991;&# 3006; 1)
for the actual Tamil characters in parenthesis
(இந்தியா1).
It is also interpreted correctly when getting values from the database to be displayed on the form.
This fails when I pass the Tamil characters as a querystring of a form like the one in parenthesis
(<Form Name = "frmEdit<? echo($Count); ?>" method = "post" action = "datapannel.php?goTo=editAdminUser&qryAdminId=<?php echo($strAdminId); ?>&qryUID=<?php echo($strUid); ?>&qryGuid=<?php echo($strGuid); ?>">). $strAdminId contains the Tamil word.
Does anyone have experience in passing other languages which differs from Latin characters through a querystring? If so, how? Thanks in advance!