I`m trying to extract numbers out of the database using substr.
Say i have a string in the database 23,34,55,74,23,56,88,5,21,11,8,44
How would i get the numbers split from the , ?
like
$string1 = 23
$string2 = 34
$string3 = 55
$string4 = 74
and so on ???