Skip to content
Advertisement

Split a comma delimited string into an array and display on html page

basically I’m making a page where the information from mySQL database will be displayed. I have a column named topics in the database where the string (VARCHAR) goes like this:

Marketing, Business, Law, Medicine, …

I’m trying to break up this string after a comma and display them in a single line one by one like this:

JavaScript

I already have a loop for other rows and I’m not sure if it’s possible to make a loop in the loop, I’m not even sure if what i’m trying to achieve is possible but I belive it is. Here goes my full PHP code:

JavaScript

I’m wondering if it’s possible to create another loop in this loop for element, separate this string after a comma and display one by one in tag? Any help would be greatly appreciated. Thanks.

EDIT

This is what I’m trying to achieve:

This is how I want it to look

Advertisement

Answer

Quite simple (and yes, you may have as many nested loops inside your code as you want):

Use explode to split your string, then loop over it.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement