I have the following information in a MySQL column:
**rubros**
Internet
Internet, Diseño
Arquitectura, Construcción
Textiles
And I need to get an array of individual ítems in that list, something like this:
array('Internet','Diseño','Arquitectura','Construcción','Textiles');
Is there an easy way to do this with PHP?
Thanks.