Jeremy's advice is sound :o) Just thought I would add a very simple, but useful note. If you have got to the point where you have pulled some data from the system and don't know what to do with it then you probably need to familiarise yourself with how Cake returns that data to you. So in your view type
<?php echo debug($items); ?> This will echo out your multi-dimensional data array showing you exactly what data result you got and giving you vital clues as to how you need to loop through your data array to show your index or view. If you are wanting to present your list of items in a paginated list/ table then you may also want to have a look at pagination too. Once you get your head around it you'll find you instantly paginate all indexes and have quick access to easy pagination and sorting links. http://book.cakephp.org/view/164/Pagination HTH Paul Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. 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 To unsubscribe from this group, send email to cake-php+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
