how exactly do you split a string into individual chars?
ex:
$text = "hello how are you?";
$letters = explode('
magic_character',$text);
// $letters = array('h','e','l','l','o',' ','h','o','w',' ','a','r','e',' ','y','o','u','?')
i think it uses explode, but i'm not sure