One thing I admire about php is that there is usually a function that
does exactly what you want.
I'm building an RSS feed (something I had in perl).
There's a lot about escaping rss data I don't really understand, I've
been doing this:
'&','&'
'\n','<br \/>'
'’',"'"
'<','<'
'>','>'
'™',''
Is there something in php that can more directly or simply help me
build rss?
Jeff
does exactly what you want.
I'm building an RSS feed (something I had in perl).
There's a lot about escaping rss data I don't really understand, I've
been doing this:
'&','&'
'\n','<br \/>'
'’',"'"
'<','<'
'>','>'
'™',''
Is there something in php that can more directly or simply help me
build rss?
Jeff
Comment