[php]$arr=$_POST[‘block’][/php]
when i exe this line i get output like this
339,341,343,347
wen i echo this
[php]echo $arr[0];
echo $b=$arr[0];
echo $c=$arr[1];
echo $d=$arr[2];
echo $f=$arr[3];
[/php]
i get out put
3
3
9
,
i want to split the values
339,341,343,347
as
339
341
343
347
Plz help me and tell me how to split this array
I got these values through J query these a r values of unchecked check boxes i got by using query code
now i m confuse how to handle it.
there numbers r identity values i need to handle them as int values these r dynamic from database so i cannot guess wht id is going on.