$string = "123abc";
i want to go and use each letter in the string seperately so i would have it in an array.
i tried doing it with explode -
$array = explode("", $string);
but that doesn't work. is there a way with foreach?
any suggestions?
Tom
Edited by folta, 14 May 2006 - 12:41 PM.
