Re: [fw-general] How to include the result of a request inside the phtml file ?

2009-06-17 Thread Matthew Weier O'Phinney
-- Juan Felipe Alvarez Saldarriaga wrote (on Tuesday, 16 June 2009, 11:56 PM -0500): > Hey, Matthew, just to know, the action helper will be removed soon ? because > some people doesn't like it (like action stack :P), the best approach here > will > be create a view helper ? Yeah, I probably sho

Re: [fw-general] How to include the result of a request inside the phtml file ?

2009-06-17 Thread Juan Felipe Alvarez Saldarriaga
Hey, Matthew, just to know, the action helper will be removed soon ? because some people doesn't like it (like action stack :P), the best approach here will be create a view helper ? Saludos. On Tue, Jun 16, 2009 at 4:48 PM, Matthew Weier O'Phinney wrote: > -- debussy007 wrote > (on Tuesday, 16

Re: [fw-general] How to include the result of a request inside the phtml file ?

2009-06-17 Thread debussy007
Thank you !! Very powerful !! Matthew Weier O'Phinney-3 wrote: > > -- debussy007 wrote > (on Tuesday, 16 June 2009, 02:12 PM -0700): >> When rendering the phtml file, I would like to get the result of a >> request >> and put it in the html : >> >> [some html code ...] >> >> > // put th

Re: [fw-general] How to include the result of a request inside the phtml file ?

2009-06-16 Thread Matthew Weier O'Phinney
-- debussy007 wrote (on Tuesday, 16 June 2009, 02:12 PM -0700): > When rendering the phtml file, I would like to get the result of a request > and put it in the html : > > [some html code ...] > > // put the output of > // $this->baseUrl . '/admin/widgets/' . $widget . '/page/' . $

RE: [fw-general] How to include the result of a request inside the phtml file ?

2009-06-16 Thread Sergio Rinaudo
I think an iframe can help, or an ajax call as well... I don't know if there are any other solutions.. Bye Sergio Rinaudo > Date: Tue, 16 Jun 2009 14:12:19 -0700 > From: debussy...@gmail.com > To: fw-general@lists.zend.com > Subject: [fw-general] How to include the re

[fw-general] How to include the result of a request inside the phtml file ?

2009-06-16 Thread debussy007
Hello, When rendering the phtml file, I would like to get the result of a request and put it in the html : [some html code ...] baseUrl . '/admin/widgets/' . $widget . '/page/' . $page // right here ?> [some html code ...] Does anyone know how to achieve this ? Thank you for any help