bsxiong
05-30-2008, 01:00 PM
i've been trying to convert this string to an array, but for some reasons i don't know, it's not happening.
$string = "02 03 04 05 06 07";
echo explode($string);// should display "array"
print_r(explode($string));// should return all the array
any help on converting that string to an array?
$string = "02 03 04 05 06 07";
echo explode($string);// should display "array"
print_r(explode($string));// should return all the array
any help on converting that string to an array?