OK, this is a newbie question, but I can't find the answer anywhere. In a controller in Symfony2, I want to access the POST value from one of my forms. In the controller I have:

public function indexAction() {

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

    if ($request->getMethod() == 'POST') {

        $form = $this->get('form.factory')->create(new ContactType());

        $form->bindRequest($request);

        if ($form->isValid()) {

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

Unfortunately $name_value isn't returning anything. What am I doing wrong? Thanks!

link|improve this question

79% accept rate
feedback

3 Answers

up vote 12 down vote accepted

The form post values are stored under the name of the form in the request. For example, if you've overridden the getName() method of ContactType() to return "contact", you would do this:

$postData = $request->request->get('contact');
$name_value = $postData['name'];

If you're still having trouble, try doing a var_dump() on $request->request->all() to see all the post values.

link|improve this answer
1  
Thank you. The var_dump helped, I ended up attacking this with a full name to recover the form data e.g. $postData = $request->request->get('acme_somebundle_contact_type') – Acyra Aug 3 '11 at 9:48
feedback

I think that in order to get the request data, bound and validated by the form object, you must use :

$form->getClientData();

link|improve this answer
feedback

what worked for me was using this:

$data = $request->request->all();
$name = $data['form']['name'];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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