quote:
Originally posted by backfisch
in the example stands:
<![CDATA[<greeting>Hello, world!</greeting>]]> ^^
in the example it also says:
quote:
... recognized as character data, not markup
CDATA is only used for supporting characters which would otherwise need to be converted to codes (like < to <
, it is NOT for what you are saying.
you will just need to parse the <![CDATA[ ]]> out with your php script.