Hi, I have three tables. Users, Posts & Comments.
In view.ctp, below, how do I display the username of the user who made
each comment? The Comments table tracks user_id.
controllers/posts_controller.php:
function view($id = null) {
$this->set('post', $this->Post->read(null, $id));
}
views/posts/view.ctp:
<?php
// echo post content
echo Sanitize::html($post['Post']['body']);
?>
<?php foreach ($post['Comment'] as $comment): ?>
<?php
// echo comment
echo $comment['content'];?>
<?php endforeach; ?>
Thanks.... newb trying to get the hang of this...
S
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