It depends what you're using to get your data.
You could do
Code:
foreach($data as $v) {
echo $v;
}
Or if you're using mysql_fetch_array (or _assoc) you could do:
Code:
$r = mysql_fetch_assoc($mysql_resource_link_doo_dar_thing);
while($r) {
echo $r['tag']; // Use $r[index_of_Tag] if you are using _array
$r = mysql_fetch_array($mysql_resource_link_doo_dar_thing);
}
I'm on ICQ if you need 594086663