Hi,
This is my problem :
foreach ($_POST['a'] as $b)
echo $b;
$_POST['a'] from my previous page, multiple selection list box (i get this data from my lookup table which user can add data on lookup table).
The result from $b is 060100060200060300. Is there any function to split this number into variable and commas between those nums.
I want the result to be like this,
$c = 060100,060200,060300
The reason i want this because i want to put $c into my sql query. :)
p/s: sorry for my bad explanation and english..wish you guys can help me
Thanks