split array values in php

by Ramya 2012-05-18 12:10:21

split array values in php

use php explode() to split array values in php.
for eg,
$arr = $_GET['iid'];
$sp_arr = explode(',',$arr);


it will split array values using ','.
978
like
0
dislike
0
mail
flag

You must LOGIN to add comments