Hello,
I'm a bit new to cakephp now working on a project and came across
HTABM. Did a simple test with a Post model and a comments one.
Everything works great my only problem is that it also returns for
each comment the join table. Is this how it's supose to work ?
Here is what I get :
Array
(
[0] => Array
(
[Post] => Array
(
[id] => 1
[name] => claudiu
[type] => 1
)
[Comment] => Array
(
[0] => Array
(
[id] => 1
[subiect] => test1
[comment] => ss
[Join] => Array
(
[id] => 1
[comment_id] => 1
[post_id] => 1
)
)
)
)
Thank you,
Claudiu
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---