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.

I've the basic form, template and controller action of Symfony2 documentation for this example.

Whenever I try to get a parameter of the form in controller action I have to use this:

$parameters = $request->request->all();
$name = $parameters["form"]["name"];

However, in documentation use this:

$name = $request->request->get('name');

But this is wrong for me, in this case $name is null and the Object request(ParameterBag) contain this:

object(Symfony\Component\HttpFoundation\ParameterBag)#8 (1) {
  ["parameters":protected]=>
  array(1) {
    ["form"]=>
    array(1) {
      ["name"]=>
      string(4) "test"
    }
  }
}
share|improve this question
Did you use a formType to generate the form? If so what does the getName() function return. – MatsRietdijk Nov 14 '12 at 12:59

1 Answer

up vote 2 down vote accepted
$formPost = $request->request->get('form');
$name = $formPost['name'];

Or since PHP 5.4

$name = $request->request->get('form')['name'];

On my opinion, the best way to access submitted data is firstly to bind the request to the form, and then to access values from the Form object :

if ('POST' === $request->getMethod())
{
    $form->bindRequest($request); //Symfony 2.0.x
    //$form->bind($request); //Symfony 2.1.x

    $name = $form->get('name')->getData();
}
share|improve this answer
+1 for binding (in that way you can accomplish validation also) – DonCallisto Nov 14 '12 at 13:05
1  
Your first example $name = $request->request->get('form')['name']; will only work in PHP 5.4. FWIW. – james_t Nov 14 '12 at 18:40
good comment, i'm gonna edit my answer – PéCé Nov 14 '12 at 21:46

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.