how can I break a string up by charictor I tried
$string = "this is cool";
$charictors = explode("", $pizza);
hoping to return the values
"t","h","i","s"," ","i","s"," ","c","o","o","l"
but no sucess... how can I do this... or is there a better way?
I plan to use it to deveolop an encryption key... any ideas?
Thanks In Advance
Travis Harris