Im trying to take this string, "hello", and explode it into an array with each cell in the array containing one character.
$array[0] = 'h'
$array[1] = 'e'
etc..
How does this work? When is use...
$character = explode('', $string) or....
$character = explode($string)
...it doesn't seem to work. ANY HELP!?!? THANKS!!

