0
id | tags
1 | tag1,tag2,tag3
2 | tag1,tag2,tag3
In db there is the column "tags" where is "tag1,tag2,tag3..." need to show all separate tags, however shows only the first record, I would like to get the tags of all, as I do?
$tags = explode(',', $tags_row);
foreach ($tags as $item) {
echo "< href='#'>$item</a> ";
}