views:

18

answers:

1

Hello,

How i can show the RSS Feed from my WordPress blog into my CakePHP website?

I need the result to be a list where i can use the html code:

<ul>
<li>feed item 1</li>
<li>feed item 2</li>
...
<li>feed item n</li>
</ul>
A: 

Feed this example code your WordPress RSS URL and you'll be in business.

Pat
I needed it to be compatible with UTF-8 characters. I just had to tweak it using the php function utf8_decode().Thanks!
alopes