[jQuery] Re: Fwd: jQuery and UTF8

2007-09-22 Thread Mahir
U have told at very first email that u have problem in retrieving the jp characters. but here you tell u had problem in storing... I have problem in retrieving my Tamil Characters as u had. Can u pls write how do u retrieve? I am not saving data to mysql, but to retrieve using jquery ajax method

[jQuery] Re: Fwd: jQuery and UTF8

2007-09-04 Thread David Garcia Ortega
I don't know why it happens. it works correctly in text or textarea input for me. Do you have text input and textarea in the same file? Regards, David. On Sep 3, 10:31 am, ramazan özdemir <[EMAIL PROTECTED]> wrote: > i have the same problem. > i have been done this ( $instDB->executequery("SET

[jQuery] Re: Fwd: jQuery and UTF8

2007-09-03 Thread ramazan özdemir
i have the same problem. i have been done this ( $instDB->executequery("SET NAMES 'utf8'", $con); ); i solve the my problem 50%;it means that data's which are in text fields were saved correctly but in textarea were not saved correctly. On 20 Ağustos, 22:09, David Garcia Ortega <[EMAIL PROTECTE

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-23 Thread barophobia
Just wanted to let everyone know that I finally got this solved. And thanks to everyone for the help. There were several issues pointed out in this thread that helped me to build a more solid UTF-8 compliant app. So... the MAJOR problem I was having was in the jQuery code itself. It was the reas

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-21 Thread barophobia
On 8/21/07, R. Rajesh Jeba Anbiah <[EMAIL PROTECTED]> wrote: > >I had work with lot of UTF-8 and had no problem: > 1. You don't have font? > 2. or Your current charset is different from one that is been loaded? > 3. or Do you have any link for me to check? 1. I do have the font. It appears co

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-21 Thread R. Rajesh Jeba Anbiah
On Aug 21, 8:11 pm, barophobia <[EMAIL PROTECTED]> wrote: > On 8/21/07, R. Rajesh Jeba Anbiah <[EMAIL PROTECTED]> wrote: > > 2. or send the UTF-8 charset header via header(); browser should > > handle > > All the UTF-8 data is stored in a database. > > Regarding #2. I put header('Content-type:

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-21 Thread barophobia
On 8/21/07, R. Rajesh Jeba Anbiah <[EMAIL PROTECTED]> wrote: > > Either: > 1. Save the file in UTF-8 > 2. or send the UTF-8 charset header via header(); browser should > handle All the UTF-8 data is stored in a database. Regarding #2. I put header('Content-type: text/html; charset=UTF-8'); right

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-21 Thread R. Rajesh Jeba Anbiah
On Aug 20, 11:11 pm, barophobia <[EMAIL PROTECTED]> wrote: > On 8/20/07, Bil Corry <[EMAIL PROTECTED]> wrote: > Based on your information I think my problems will be solved once I > get the server to serve PHP as UTF-8 (I think I can do this via > .htaccess). Either: 1. Save the file in UTF-8

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread David Garcia Ortega
Hi barophobia, I had the same problems as you. I am using special spanish characters as '�', '�' and so on. What I did to solve the problems was: 1. In MySQL database, establish the collation as 'utf8_spanish2_ci'. To japanese characters you can use 'utf8_unicode_ci'. 2. When you load an html

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread barophobia
On 8/20/07, Bil Corry <[EMAIL PROTECTED]> wrote: > > barophobia wrote on 8/20/2007 11:58 AM: > > 1. Why do you think the standard pages work fine? > > Do you have a meta tag defining the charset? Most likely that wouldn't be > present in an AJAX call but would tell the browser the correct charse

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread Bil Corry
barophobia wrote on 8/20/2007 11:58 AM: 1. Why do you think the standard pages work fine? Do you have a meta tag defining the charset? Most likely that wouldn't be present in an AJAX call but would tell the browser the correct charset. 2. What about the issue I'm having sending the data?

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread barophobia
On 8/20/07, Bil Corry <[EMAIL PROTECTED]> wrote: > > Your server should be sending this as the content-type if serving UTF-8: > > text/html; charset=UTF-8 > > Otherwise, you're leaving it up to the browser to decipher the charset. Thanks for the info but I have some questions still. 1. Why

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-20 Thread Bil Corry
barophobia wrote on 8/15/2007 11:15 PM: Content-Typetext/html Does that give you a clue? Your server should be sending this as the content-type if serving UTF-8: text/html; charset=UTF-8 Otherwise, you're leaving it up to the browser to decipher the charset. - Bil

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-15 Thread barophobia
On 8/15/07, pd <[EMAIL PROTECTED]> wrote: > > I can't be sure this will help, but does your server side script > return the document with specifically with a utf8 charset header? Well, hopefully this is the right way... According to Firebug, the Response Headers for the document that is loaded t

[jQuery] Re: Fwd: jQuery and UTF8

2007-08-15 Thread pd
I can't be sure this will help, but does your server side script return the document with specifically with a utf8 charset header? On Aug 16, 8:05 am, barophobia <[EMAIL PROTECTED]> wrote: > I'm forwarding this email again as it seems that it may not have made > its way to the list the first time