Re: [PHP] xml_parse and xml entities

2002-12-12 Thread Khalid El-Kary
hi Russ, why don't you just str_replace the <, > and & with their entities and when they get extracted the parser will normally replace them with their original form, won't it? Regards, Khalid Al-Kary Hi all, I'm writing a guestbook and message in the guestbook might contain & < > so to m

[PHP] xml_parse and xml entities

2002-12-12 Thread Russ Taylor
Hi all, I'm writing a guestbook and message in the guestbook might contain & < > so to make sure this wasn't a problem I was advised to great entities in my xml file like so ]> and when I write to my xml file if I convert all & < > characters to & < > problem solved. I'm having