special characters
Brought to you by:
bs_php,
nigelswinson
From: Dan A. <da...@mo...> - 2002-05-17 20:58:34
|
Just so everyone knows, xml requires that us use UTF-8 encoding in your xml documents. That means it is impossible to have all of those german/french accents in regular form. You must use XML entities, which just like < and > replace in the output those characters which are not alpha-numeric characters. So the phpxpath code should not! check for these characters, you should convert them when you make your document by using utf8_encode() Dan |