I\'m trying to understand why, on my page with a query string, the code:
echo \"Item count = \" . count($_GET); echo \"First item = \" . $_
As another weird workaround, you can access the very first element using:
print $_GET[key($_GET)];
This utilizes the internal array pointer, like reset/end/current(), could be useful in an each() loop.
each()