Form sending non English text

liunx

Guest
Hi, I wrote a form that is intended to be used by Arabic speaking users. The form sends its input to a PHP file that will process the information. <br />
<br />
My problem is that the form sends the Arabic text with the URL in the following format: <br />
item1=%C7%E1%E4%D5+%C7%E1%C7%E6%E1<br />
<br />
I need one of two things: either that the Arabic text in the form gets sent as is without being converted like above. Or be able to code the PHP file to convert the string received back to Arabic.<br />
<br />
Sure if someone is familiar with how to approach this issue in a different language that is good enough since I will be able to take the solution and apply it to Arabic.<br />
<br />
Thanks,<br />
Salam<!--content-->if what you submitted was the following:<br />
<br />
C WITH CEDILLA<br />
a WITH ACUTE<br />
a WITH DIAERESIS<br />
O WITH TILDE<br />
<br />
C WITH CEDILLA<br />
a WITH ACUTE<br />
C WITH CEDILLA<br />
ae<br />
a WITH ACUTE<br />
<br />
then its unicode in hexadecimal.<!--content-->Sounds good ... then I will be looking to see if there is a PHP function that converts this unicode in hexadecimal to normal text.<br />
<br />
Thanks<!--content-->
 
Back
Top