tags:

views:

51

answers:

3

Is this valid?:

http://www.SomeURL.com/Index.php?123=xyz

Will I be able to access the value 'xyz' under the key '123' the same ways as usual?

+3  A: 

Yes you can do this.

$_GET['123']
webbiedave
what's the difference between numeric index 123 and string one '123'? And what is "numerically indexed array"?
Col. Shrapnel
@Shraphel: http://www.w3schools.com/php/php_arrays.asp
bancer
Thank you very much for the HELPFUL information, and +1 for not boosting your ego at my expense.
Joshua
Good point, Shrapnel. I've edited.
webbiedave
+4  A: 

Yes, it's completely possible. It's also very easy to try by yourself.

grapefrukt
+1 for "It's also very easy to try by yourself".
nikic
I'm glad that you're all so very experienced, but not everything that seems easy to you, is by definition easy for everyone else. Thanks for making me feel weak and small though. There are no stupid questions, just stupid people, right? So okay, I'll bite... HOW would I go about trying it by myself? Explain to me, please, exactly how easy it is...
Joshua
I'm sorry. I didn't mean to be condescending. I just assumed you had some php code you wanted to change, in which case it would be a quick test away.
grapefrukt
A: 

Yes this is something you can do.

imbadatjquery