Create list from custom field comma separated values

foreach($items as $item) { 

$item = nl2br($item);
list($name,$src,$price,$desc) = explode('<br />',$item); 

echo "<div class=\"item\">";
echo "<h2>$name</h2>";
echo "<img src=\"".trim($src)."\" />";
echo "<br />Price: $price";
echo "<br />Description: $desc";
echo "</div><br />"; 

}

This works if you have them hit enter after each value to make the list. http://vudu.me/f7 Is an article I wrote, and it has a link to my source, so you can get a better understanding of it

This would work best… I think… if you know how many values would be entered? You still need to open up by actually using get_post_meta of course….