This doesn't sound like a Cake-specific problem.  Cake will provide
you the data you need in your views, and it's inside your views that
need to code the data to display as tabs using HTML/CSS.  You might
try this tutorial: http://www.htmldog.com/articles/tabs/

Most likely you'll have whatever data you have to display as a tab in
an array sent to your view.  Then you can cycle through that data and
echo them out as unordered list elements.  For example:

<ul>
<?php

foreach ($data as $item) {
     echo '<li>'.$item['title'].'</li>';
}
?>
</ul>


-casey

On May 9, 8:29 pm, wesleygray <[EMAIL PROTECTED]> wrote:
> I can't seem to find any examples of how to create a page of tabs
> using CakePHP.  I would like to read rows from a table and create a
> tab for each one.  The closes thing I could find is 
> this:http://bakery.cakephp.org/articles/view/threaded-lists
>
> Anyone have a pointer?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to