I have a set of query strings stored in a database as so
&foo=bar&foo2=bar2
How would I successfully iterate through this string to extract each key and value into an array using the keys as the array keys too?
Had a look around and other questions on here seem to only be for one value.