Re: images -> prev, next

2007-04-05 Thread Copot
Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more optio

Re: images -> prev, next

2007-04-05 Thread digital spaghetti
You should not need to do e($html->image('prev.gif') Instead, try it like this: prev($html->image('prev.gif'), null, null)); ?> next($html->image('next.gif'), null, null)); ?> On 4/5/07, Copot <[EMAIL PROTECTED]> wrote: > > When I do something like this, > > prev(e($html->image('prev.gif')), n

images -> prev, next

2007-04-05 Thread Copot
When I do something like this, prev(e($html->image('prev.gif')), null, null); ?> next(e($html->image('next.gif')), null, null); ?> no links are genereated. It seems to work only with text. Can someone give me an explaination or a solution? --~--~-~--~~~---~--~~