Hi,

Im trying to show two elements of a Doctrine collection inside a <div> this way:

  foreach ($friends as $friend) { ?>


<div id="photo_friend">
<?php echo link_to(
image_tag( '/uploads/fotografias_miembros/'.$friend->getAvatar()),

'miembros/show?id='.$friend->getId()) ; ?>
</div>


<div id="name_friend">
<?php echo $amigo->getName(); ?>
</div>


<?php }       ?>


So, is there any way to go to the next element (next row) in a Doctrine collection?

Regards

Javi

--
You received this message because you are subscribed to the Google Groups "symfony 
users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.

Reply via email to