I’m new in Symfony2.I want to post a value from twig to controller. I know how to pass values through url. But i want How to post a data from twig to a controller action without passing that values to url?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is not a limitation of symfony, but the http protocol: you can pass values using either GET or POST parameters. GET valuas are passed by simple urls, for post you need to use forms or javascript.
It is only a symfony2 related question if you want to embedd another controller in your view – for this, see the documentation