I want to break a string up into an array (eg "hello" would end up like
$array[0] = h, $array[1] = e, etc) and I cannot for the life of me
figure out how. things like explode() and split() both require a
seperator which is more advanced than I need in this case. can anyone
point me in the right direction?