a URL ending with something like portal.php?key2=hello how can I get the value of "key2"?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
|||||||||||
|
will get you the value from a query string.
will get you the value from a form posted.
will get you either of the above if it exists. |
|||
|
|
|
GET data is decoded into the $_GET super-global array. See http://php.net/manual/en/language.variables.external.php |
|||
|
|