Hi,
I'm busting my balls over this and it shouldn't be this difficult. Perhaps I'm making this too dificult.
I have a string of key=value pairs separated by "::" like this
142=1::144=25::14=125
What I want to end up is
Array ( [142] => 1, [144] => 25, [14] => 125)
I thinking that at some point this would be an array of arrays, but then again it could probably be done using preg_match or preg_split, just can't crack this. please help!