In PHP, how do I convert:
$result = "abdcef";
into an array that\'s:
$result[0] = a; $result[1] = b; $result[2] = c;
You will want to use str_split().
$result = str_split('abcdef');
http://us2.php.net/manual/en/function.str-split.php