I have multiple entries in a mysql table field, these are separated with commas;
data1, data2, data3 etc. How do I using PHP separate out these terms and display them separately in a table like so;
Data
------------
Data 1
------------
Data 2
------------
Data 3
------------
etc
First of all, you shouldn’t have multiple values in a single column. However, regardless of why you have it, there is a function in php called
explodewhich allows you to explode a string at a specific delimiter. You can have something like this:$myArray = explode(',', $mydata_coming_from_database);