I am trying to generate a list of urls for the tags people who have submitted while posting their information. Data gets saved in mysql table as tags and the value comes with comma for multiple words,
for example: tag1, tag2, tag3 abd saved as is in a single field.
with explode function i am able to generate a single link with all commas as example.com/tag1, tag2, tag2.html
but what i need is with seperate url for comma seperated words as in
example.com/tag1.html
example.com/tag2.html
example.com/tag3.html
how can i achieve this? please help