Regarding his question about short tags... instead of:

<?= '<div>' ?>
<?= $insideDiv ?>
<?= '</div>' ?>

Do:

<div><?= $insideDiv ?></div>

A view script is really just HTML with some php snippets <?php ... ?> and <?= 
... ?>

This isn't going to help your feed issue, but I suggest you check out that link 
he sent you.

Mike Tramontano
eFashion Solutions - Sr Backend Developer
[email protected]


-----Original Message-----
From: Deepak [mailto:[email protected]] 
Sent: Wednesday, March 18, 2009 11:13 AM
To: Zend Framework General
Subject: Re: [fw-general] Dynamically generated RSS feed question

On Wed, Mar 18, 2009 at 10:59 PM, till <[email protected]> wrote:

> Yeah, first of all -- why do you wrap everything in short tags?
>
> Then, I'd suggest you use Zend_Feed_Builder and follow the example at
> the bottom:
> <http://framework.zend.com/manual/en/zend.feed.importing.html#zend.feed.importing.custom.dump>
>
> Till
>

It is very short. No clue. Could you give me an example on how to wrap
my data in this feed before saving or sending? Complete example is
very much appreciated.

Thanks for pointing me to right direction.

Reply via email to