How can I convert database results that are within a field divided by commas, into separate variables independently of the number of results contained in the field.
Example:
I have:
$row['campo'] = 333,444,555,6666
I need:
$var1='333';
$var2='444';
.
.