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.

If this is the vam dump of Request (var_dump($_REQUEST);):

array(1) {
  ["gift_edit"]=>
  array(11) {
    ["name"]=>
    string(19) "IBM da colezionista"
    ["description"]=>
    string(0) ""
    ["validbegin"]=>
    array(3) {
      ["day"]=>
      string(2) "31"
      ["month"]=>
      string(1) "1"
      ["year"]=>
      string(4) "2013"
    }
    ["validend"]=>
    array(3) {
      ["day"]=>
      string(1) "3"
      ["month"]=>
      string(1) "3"
      ["year"]=>
      string(4) "2015"
    }
    ["redemption"]=>
    string(13) "1234567888844"
    ["points"]=>
    string(4) "1200"
    ["price"]=>
    string(4) "6000"
    ["discount"]=>
    string(2) "20"
    ["codelist"]=>
    string(33) "unoperibm
dueperibm
treperibm
"
    ["amount"]=>
    string(0) ""
    ["_token"]=>
    string(40) "f2389c3d302630a624c10660aac218d279953d06"
  }
}

How do you retrieve codelist?

share|improve this question

3 Answers

$_REQUEST['gift_edit']['codelist'] or $_POST['gift_edit']['codelist'].

share|improve this answer
3  
+1 it's generally better to be explicit about the request method, and use $_POST or $_GET than $_REQUEST. – SDC Feb 1 at 16:16

You could access it with the following code.

$_REQUEST['gift_edit']['codelist']
share|improve this answer

Try:

$test = $_REQUEST['gift_edit']['codelist'];   
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.