Say you are on this page: profile.php?user=1&wicked=3
To get an array like:
Array
(
[user] => 1
[wicked] => 3
)
How do I simply get the first or second value of the array? So if I want the second, I would get: wicked=3? Is it something with a foreach loop?