james438
08-28-2007, 03:54 AM
$string="its all mr statum";
$array=explode(" ",$string);
$array1=$array[0];
$array1=explode("t",array1);
I'm trying to figure out a way to create a loop where you create a multidimensional array from a string, from the above nonsense code.
I need a hint :) I don't deal with multidimensional arrays much.
$array=explode(" ",$string);
$array1=$array[0];
$array1=explode("t",array1);
I'm trying to figure out a way to create a loop where you create a multidimensional array from a string, from the above nonsense code.
I need a hint :) I don't deal with multidimensional arrays much.