hi all
i want to do this split a string from database
let say this is string = "a,b,c,d,e"
how do i split them up by doing loop them up?
remember always , on each split.
i did before but i lose the code thkx
Printable View
hi all
i want to do this split a string from database
let say this is string = "a,b,c,d,e"
how do i split them up by doing loop them up?
remember always , on each split.
i did before but i lose the code thkx
Sorry! i found out how to use it here code
$a = "a,b,c,d,e"
$b = split(',', a);
foreach ($b as $c){
echo $v. "<br>";
}