Первое значение вывожу так
$content_profile = content_profile_load('profile', $uid);
$content_profile = node_build_content($content_profile, TRUE, FALSE);
$content_profile = node_build_content($content_profile, TRUE, FALSE);
if ($content_profile->field_my_favorite_sites[0]['url']): ?>
<span><?php print t('Интересные места в интернете:'); ?> </span>
<?php if ($content_profile->field_my_favorite_sites[0]['url']) {
print l($content_profile->field_my_favorite_sites[0]['url'], $content_profile->field_my_favorite_sites[0]['url']); }
<?php endif; ?>
подскажите как несколько значений через запятую вывести?
Комментарии
пробовал с этим скрестить вариантов что то нифига
<?php
unset ($items); foreach ((array)$field_my_favorite_sites as $item)
{ $items []= $item['view']; } print implode(", ", $items); ?><br>
<?php endif;
?>