Show all the creators on the item browse page

When I browse the items in a collection, I add the name of the creator below the description. Unfortunately, it only show me the name of the first one and not all the creator. Is there any solution for that?

A big thanks!!

Browse.php :

<div class="Creator"><p><?php echo __('Creator'); ?>:
<?php if ($creator = metadata('item', array('Dublin Core', 'Creator'))) :
echo link_to_item($creator, array('class'=>'permalink'));
endif; ?>
</div>

A third parameter to metadata() will let you do that:

$creator = metadata('item', array('Dublin Core', 'Creator'), 'all');

That will give you an array of values to loop through.