up vote 3 down vote favorite
share [g+] share [fb]

Im trying to put an html embed code for a flash video into the rss feed, which will then be parser by a parser (magpie) on my other site. How should I encode the embed code on one side, and then decode it on the other so I can insert clean html into the DB on the receiving server?

link|improve this question

77% accept rate
feedback

4 Answers

up vote 1 down vote accepted

Since RSS is XML, you might want to check out CDATA, which I believe is valid in the various RSS specs.

<summary><![CDATA[Data Here]]>

Here's the w3schools entry on it: http://www.w3schools.com/XML/xml_cdata.asp

link|improve this answer
You sir, are a gentleman, and a scholar. Worked perfectly! – Yegor Sep 22 '08 at 4:45
This will break if there's a CDATA section (or just "]]>" ) in the HTML. It's valid to do, but maybe an error case you don't want to handle since you're just looking at embedding a flash player. – davenpcj Sep 23 '08 at 15:02
wrong! coreylib.com – Kenneth Reitz Aug 28 '09 at 22:38
feedback

htmlencode/htmldecode should do the trick.

link|improve this answer
feedback

Ive been using htmlentities/html_entity_decode but for some reason it doesnt work with the parser. In a normal test it works, but parser always returns html code without < > " characters.

link|improve this answer
feedback

RSS is XML. It has very specific rules for encoding HTML. If you're generating it, I'd recommend using an xml library to write the node containing HTML, to be sure you get the encoding right.

HTMLencode will only perform the escaping necessary for embedding data within HTML, XML rules are more strict.

link|improve this answer
which one would you recommend? – Yegor Sep 22 '08 at 3:57
libxml is freely available, but there are PHP modules that read/write XML, and xml libraries for most languages. – davenpcj Sep 23 '08 at 14:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.