[PHP] Re: Character encoding

2009-08-05 Thread Ralph Deffke
I assume that the comments are collected by a browser form provided by you ! do u use the form attribute accept-charset ? I always do and I always use UTF-8 homogeniously throughout my application I never had that problem. Sándor Tamás (HostWare Kft . ) sandorta...@hostware.hu wrote in

[PHP] Re: Character encoding

2009-08-05 Thread Nisse Engström
On Wed, 5 Aug 2009 18:11:44 +0200, Ralph Deffke wrote: I assume that the comments are collected by a browser form provided by you ! do u use the form attribute accept-charset ? I always do and I always use UTF-8 homogeniously throughout my application I never had that problem. Don't forget to

[PHP] Re: character encoding

2008-03-31 Thread Bill
Ok I give it a try as soon as I can. Hotmail will accept mail delivery from PHP ? Sure. There is nothing specific of PHP that prevents Hotmail from accepting messages sent by PHP scripts. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: character encoding

2008-03-31 Thread Bill
Hi Manuel Hotmail will accept mail delivery from PHP ? Sure. There is nothing specific of PHP that prevents Hotmail from accepting messages sent by PHP scripts. I used your test_smtp_message.php setting to_address to my hotmail, localhost to my ip on dyndns, smtp_host to www.hotmail.com,

[PHP] Re: character encoding

2008-03-29 Thread Bill
Hi Manuel You can build mailto: links with a default subject and text, but I am not sure you can force Outlook to use specific HTML. It's wiser to not rely on mailto: . Hotmail will accept mail delivery from PHP ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: character encoding

2008-03-29 Thread Colin Guthrie
Bill wrote: You can build mailto: links with a default subject and text, but I am not sure you can force Outlook to use specific HTML. It's wiser to not rely on mailto: . Hotmail will accept mail delivery from PHP ? mailto: links have nothing to do with PHP but generally speaking mailto: is

[PHP] Re: character encoding

2008-03-29 Thread Manuel Lemos
Hello, on 03/29/2008 12:43 PM Bill said the following: You can build mailto: links with a default subject and text, but I am not sure you can force Outlook to use specific HTML. It's wiser to not rely on mailto: . Hotmail will accept mail delivery from PHP ? Sure. There is nothing specific

[PHP] Re: character encoding

2008-03-28 Thread Bill
Hi Manuel In the body that column shows Brébeuf in Windows Outlook. You may want to try this MIME message composing and sending class that http://www.phpclasses.org/mimemessage Looks great Manuel.but my server is under dyndns and the DN isn't qualified so no mail functions available. I

[PHP] Re: character encoding

2008-03-28 Thread Manuel Lemos
Hello, on 03/28/2008 12:08 PM Bill said the following: Hi Manuel In the body that column shows Brébeuf in Windows Outlook. You may want to try this MIME message composing and sending class that http://www.phpclasses.org/mimemessage Looks great Manuel.but my server is under dyndns and

[PHP] Re: character encoding

2008-03-26 Thread Manuel Lemos
Hello, on 03/26/2008 04:57 PM Bill said the following: A column in a table has Brébeuf in it. (3rd caracter is eacute;) I use that table to send emails. In the body that column shows Brébeuf in Windows Outlook. How could I translate to the correct encoding so that accents show

[PHP] Re: Character Encoding problem

2005-07-22 Thread Mike Magat
Are characters such as àâáâãäåèéêë and others like them considered UTF-8 characters? If it is considered UTF-8 characters, it still manages itself to be displayed correctly under ISO-8859-1. The page contains those type of characters and it is being displayed under ISO-8859-1. However, if I

[PHP] Re: Character Encoding Problem

2004-02-23 Thread Lucian Cozma
Try multibyte functions (http://www.php.net/manual/en/ref.mbstring.php): mb_decode_numericentity mb_encode_numericentity mb_convert_encoding See below: ?php function n_to_c($str) { return mb_decode_numericentity($str, array(0x0, 0x2, 0, 0x), 'UTF-8'); } function c_to_n($strt) { return

[PHP] Re: character encoding

2001-08-27 Thread Yasuo Ohgaki
Fanda wrote: Hi, can I use some php funciton to convert strings to charset iso-8859-2? Do exists some function to detect encoding of string? Try multi-byte string module. It can detect encoding and convert one from another. Look for PHP manual for details. You might also interested in iconv