View Single Post
Old 01-14-2010, 11:57 PM  
SmellyNose
Confirmed User
 
SmellyNose's Avatar
 
Industry Role:
Join Date: Aug 2009
Location: me at smellynose.com
Posts: 206
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

Last edited by SmellyNose; 01-14-2010 at 11:59 PM..
SmellyNose is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote