I'm sure this is likely to be a simple question to answer for the people here...
Let's say I have the following string:
name=Joe&color=black&sex=%&status=single
I want to create a list of the each words sandwiched between the '=' and the '&'. So, I want to create an array with these values:
[0] Joe
[1] black
[2] %
[3] single
Can someone tell me how to do this, or what function I need to use?