rss reader

2008-12-22 Thread Tonyz
how can I read on the homepage of my cake app the rss feed of another site wordpress based? There is a simple way to do so? Thanks Tonyz --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To post

blog tutorial adding post and redirect to the new post id

2007-05-11 Thread Tonyz
I am doing the blog tutorial and I want that after the post is saved the page redirects not to the posts index but to the new post added view, so I should change '/posts' with 'posts/view/id' but how can I pass the id of the new post just saved? function add() { if

Re: Making REST Requests to a web-server like yahoo

2007-04-10 Thread Tonyz
Chris I will be confused as a newbie not you :-) I no need cookie so I will use file_get_contents but I read that curl is more performant so I need to find a host who supports it. Ciao Tonyz On 8 Apr, 19:36, Chris Hartjes [EMAIL PROTECTED] wrote: I'm confused now, what do cookies and sessions

Re: Making REST Requests to a web-server like yahoo

2007-04-08 Thread Tonyz
Hi Chris I need to handle session and cookie this is why I will use the pear class. I found also this class http://sourceforge.net/projects/snoopy/ Tonyz On 7 Apr, 19:24, Chris Hartjes [EMAIL PROTECTED] wrote: On 4/7/07, Tonyz [EMAIL PROTECTED] wrote: I have no need to parse xml

Re: Making REST Requests to a web-server like yahoo

2007-04-07 Thread Tonyz
is your easiest solution if using PHP 5, otherwise use the curl functions. XML parsing sucks in PHP 4, so I hope you can use PHP 5. Give me SimpleXML or give me death! :) On 4/6/07, Tonyz [EMAIL PROTECTED] wrote: I read this article on yahoo developer network because I would like

Making REST Requests to a web-server like yahoo

2007-04-06 Thread Tonyz
I read this article on yahoo developer network because I would like in my cake app to display search results from yahoo. The article is at http://developer.yahoo.com/php/howto-reqRestPhp.html There is some built in class of cake who can perform rest request to a webserver with curl or