| 
 Posted by Kim Andrι Akerψ on 08/31/06 21:57 
Alex wrote: 
 
> hello! do u know how can i put html into and xml tag 
> Example: 
>  
>     <element><br></element> 
>  
> i receive error "the page is not well formatted" ... 
 
That is because <br> will also be parsed by the XML parser. Instead, 
try this: 
 
	<element><![CDATA[<br>]]></element> 
 
http://www.w3schools.com/xml/xml_cdata.asp 
 
--  
Kim AndrΓ© AkerΓΈ 
- kimandre@NOSPAMbetadome.com 
(remove NOSPAM to contact me directly)
 
  
Navigation:
[Reply to this message] 
 |