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.

a URL ending with something like portal.php?key2=hello how can I get the value of "key2"?

share|improve this question

3 Answers

up vote 2 down vote accepted
var_dump( $_GET['key2'] );
share|improve this answer
1  
Thanks! But what's the var_dump for? It worked without it! – Ahmad Farid Nov 11 '10 at 10:07
var_dump displays the variable. You can always consult php manual (php.net) to know usage of a function. – Vikash Nov 11 '10 at 10:11
1  
var_dump is like a more informative version of echo used solely for debugging. So even if it was blank it would display something. – meder Nov 11 '10 at 10:15
$_GET['key2']

will get you the value from a query string.

$_POST['key2']

will get you the value from a form posted.

$_REQUEST['key2']

will get you either of the above if it exists.

share|improve this answer

GET data is decoded into the $_GET super-global array. See http://php.net/manual/en/language.variables.external.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.