Re: [PHP-DB] Arabic characters displayed as garbage !!

2004-10-04 Thread Dre
Thanks I will take a look at it BR [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] By default, MySQL uses the ISO-8859-1 (Latin1) character set. I guess you need to set this parameter to something suitable for Arabic (if it is supported by MySQL). I suggest you read The Character

Re: [PHP-DB] Arabic characters displayed as garbage !!

2004-10-04 Thread Han
] Sent: Monday, October 04, 2004 2:36 AM Subject: Re: [PHP-DB] Arabic characters displayed as garbage !! By default, MySQL uses the ISO-8859-1 (Latin1) character set. I guess you need to set this parameter to something suitable for Arabic (if it is supported by MySQL). I suggest you read The Character

Re: [PHP-DB] Arabic characters displayed as garbage !!

2004-10-04 Thread Han
Sorry, I meant BLOB, not BLOP. Han. - Original Message - From: Han [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Dre [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, October 04, 2004 3:24 PM Subject: Re: [PHP-DB] Arabic characters displayed as garbage !! Hi, I might be able to help

Re: [PHP-DB] Arabic characters displayed as garbage !!

2004-10-04 Thread M Saleh EG
[EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, October 04, 2004 3:24 PM Subject: Re: [PHP-DB] Arabic characters displayed as garbage !! Hi, I might be able to help. I've done a website that uses Chinese characters. I have to store the data in a BLOP mysql field. Then use

[PHP-DB] Arabic characters displayed as garbage !!

2004-10-03 Thread Dre
Hi, I'm working on a website that needs to save and display Arabic characters. I'm using MySQL database and no matter how I insert the data either using phpMyAdmin or inserting it using a script of my own, when I try to show (display) the data I previously saved (which contains Arabic

Re: [PHP-DB] Arabic characters displayed as garbage !!

2004-10-03 Thread martin73
Did you set a character encoding on your page to Arabic? (eg. ISO-8859-6) Hi, I'm working on a website that needs to save and display Arabic characters. I'm using MySQL database and no matter how I insert the data either using phpMyAdmin or inserting it using a script of my own, when I try

Re: [PHP-DB] Arabic characters displayed as garbage !!

2004-10-03 Thread Dre
yes I did .. and the problem only happens for arabic text stored in database [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Did you set a character encoding on your page to Arabic? (eg. ISO-8859-6) Hi, I'm working on a website that needs to save and display Arabic characters.

Re: [PHP-DB] Arabic characters displayed as garbage !!

2004-10-03 Thread martin73
By default, MySQL uses the ISO-8859-1 (Latin1) character set. I guess you need to set this parameter to something suitable for Arabic (if it is supported by MySQL). I suggest you read The Character Set Used for Data and Sorting part of MySQL manual. That's all I can help with. Cheers yes I did