[snip] Any ideas how to do this, I have a string
734088+3+734132+9+734138+80+781007+1+
I need to place the string into a multi-array like so
array[0][0] = 734088
array[0][1] = 3
etc...
Now ive tried everything i know any ideas?
[/snip]
start with explode
$arrString = explode("+", $stringYouAreWorkingWith);
Then loop through it, placing the pairs into two-dimensional array you
mention above
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

