Re: [PHP] Re: *Umlauts/UTF-8

2003-04-04 Thread John Nichel
an specific topic. Cheers Mario Soto [EMAIL PROTECTED] -.-.-.- - Original Message - From: nospam To: 'Alexey Lysenkov' Cc: 'Php-General Sent: Thursday, April 03, 2003 5:05 AM Subject: RE: [PHP] Re: *Umlauts/UTF-8 Hi Alexey I can't tell about Cyrillic, but for

Re: [PHP] Re: *Umlauts/UTF-8

2003-04-04 Thread Mario Soto
Message - From: nospam To: 'Alexey Lysenkov' Cc: 'Php-General Sent: Thursday, April 03, 2003 5:05 AM Subject: RE: [PHP] Re: *Umlauts/UTF-8 Hi Alexey I can't tell about Cyrillic, but for "Umlauts" : When you write the Text-Files, you can try to encode them an e

Re: [PHP] Re: *Umlauts/UTF-8

2003-04-04 Thread Mario Soto
Try using the standad chars for the unicode system. Enclosed to the message are the definitions on the Standard of the html 4.0 in a .rar file. The archives are text only. Hope that this enclosed file gets into the list, so it may help other that need something similar. Any way this is the gene

RE: [PHP] Re: *Umlauts/UTF-8

2003-04-03 Thread nospam
Hi Alexey I can't tell about Cyrillic, but for "Umlauts" : When you write the Text-Files, you can try to encode them an entities. I stole the following function somewhere : function encodemymail($txt) { for ($i = 0; $i < strlen($txt); $i++) { $ent .= "&#" . ord(substr($txt, $i, 1))