[PHP] PHP DOM saveHTML outputs entities

2007-03-21 Thread Eli

Hi,

I'm loading a utf-8 xml file into PHP5 DOM, and then use saveHTML() 
method. The result output always convert characters to html entities in 
any case.
How can I avoid this? I want to output utf-8 html string with no html 
entities.


-thanks!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP DOM saveHTML outputs entities

2007-03-21 Thread Tijnema !

On 3/21/07, Eli [EMAIL PROTECTED] wrote:

Hi,

I'm loading a utf-8 xml file into PHP5 DOM, and then use saveHTML()
method. The result output always convert characters to html entities in
any case.
How can I avoid this? I want to output utf-8 html string with no html
entities.

-thanks!


What about html_entity_decode?
http://www.php.net/html_entity_decode

Tijnema



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP DOM saveHTML outputs entities

2007-03-21 Thread Nicholas Yim
Hello Eli,



Best regards, 
  
=== At 2007-03-21, 15:13:29 you wrote: ===

Hi,

I'm loading a utf-8 xml file into PHP5 DOM, and then use saveHTML() 
   how save() method
method. The result output always convert characters to html entities in 
any case.
How can I avoid this? I want to output utf-8 html string with no html 
entities.

-thanks!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



= = = = = = = = = = = = = = = = = = = =

Nicholas Yim
[EMAIL PROTECTED]
2007-03-21

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP DOM saveHTML outputs entities

2007-03-21 Thread Eli
Hi Nicholas,

Nicholas Yim wrote:
 how save() method

The save() method, or actually saveXML() method dumps the DOM in XML
format and not HTML format, and browsers do not know how to handle it
correctly.

-thanks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php