Can I use this Form in symfony 4? The Next CEO of Stack OverflowHow to pass data from twig to Symfony2 controller using formGet controller and action name from within controller?Symfony doctrine, update entity without form?Symfony ESI get POST Parameter for FORM submit or call ESI as POSTMultiple form include symfony (same page)Symfony 2.8 Forms/Twig: Twig is rendering my input (type=date) incorrectlysymfony 4 multiple forms loop twig submitSymfony - change attribute on existing file (FosUserBundle ProfileFormType)Symfony 4 - How can I print form input on other controller page?Display json data with Symfony 4 Form component

Error when running sfdx update to 7.1.3 then sfdx push errors

Where to find order of arguments for default functions

What does this shorthand mean?

Putting a 2D region plot under a 3D plot

How do spells that require an ability check vs. the caster's spell save DC work?

How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?

Can I equip Skullclamp on a creature I am sacrificing?

Grabbing quick drinks

Does it take more energy to get to Venus or to Mars?

If the heap is initialized for security, then why is the stack uninitialized?

Can a single photon have an energy density?

How long to clear the 'suck zone' of a turbofan after start is initiated?

How to count occurrences of text in a file?

Visit to the USA with ESTA approved before trip to Iran

How can I open an app using Terminal?

How to make a software documentation "officially" citable?

Rotate a column

How to write the block matrix in LaTex?

Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?

Go Pregnant or Go Home

What makes a siege story/plot interesting?

Is the concept of a "numerable" fiber bundle really useful or an empty generalization?

What is the purpose of the Evocation wizard's Potent Cantrip feature?

When did Lisp start using symbols for arithmetic?



Can I use this Form in symfony 4?



The Next CEO of Stack OverflowHow to pass data from twig to Symfony2 controller using formGet controller and action name from within controller?Symfony doctrine, update entity without form?Symfony ESI get POST Parameter for FORM submit or call ESI as POSTMultiple form include symfony (same page)Symfony 2.8 Forms/Twig: Twig is rendering my input (type=date) incorrectlysymfony 4 multiple forms loop twig submitSymfony - change attribute on existing file (FosUserBundle ProfileFormType)Symfony 4 - How can I print form input on other controller page?Display json data with Symfony 4 Form component










-1















I have added this form in twig, i need to know if this is okay and how can i recupere the input name="comments" in controller



 <form action=" path('Update') " method="POST">
<input class="form-control" type="text" name="comments"
value=""></td>
<td>
<input type="submit" value="Save"/>
</form>









share|improve this question
























  • I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.

    – Cid
    Mar 21 at 16:45















-1















I have added this form in twig, i need to know if this is okay and how can i recupere the input name="comments" in controller



 <form action=" path('Update') " method="POST">
<input class="form-control" type="text" name="comments"
value=""></td>
<td>
<input type="submit" value="Save"/>
</form>









share|improve this question
























  • I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.

    – Cid
    Mar 21 at 16:45













-1












-1








-1








I have added this form in twig, i need to know if this is okay and how can i recupere the input name="comments" in controller



 <form action=" path('Update') " method="POST">
<input class="form-control" type="text" name="comments"
value=""></td>
<td>
<input type="submit" value="Save"/>
</form>









share|improve this question
















I have added this form in twig, i need to know if this is okay and how can i recupere the input name="comments" in controller



 <form action=" path('Update') " method="POST">
<input class="form-control" type="text" name="comments"
value=""></td>
<td>
<input type="submit" value="Save"/>
</form>






symfony controller twig symfony-forms symfony4






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 16:51









Matteo

26.9k106179




26.9k106179










asked Mar 21 at 16:37









KhalilKhalil

658




658












  • I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.

    – Cid
    Mar 21 at 16:45

















  • I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.

    – Cid
    Mar 21 at 16:45
















I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.

– Cid
Mar 21 at 16:45





I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.

– Cid
Mar 21 at 16:45












2 Answers
2






active

oldest

votes


















1














You can take a look at the Symfony Request Object section of the doc:




// retrieves $_GET and $_POST variables respectively
$request->query->get('id');
$request->request->get('category', 'default category');



So you can retrieve in the controller as:



$request->request->get('comments');





share|improve this answer























  • Thank you, I have another question : I have multiple form how can i get the name of this form ?

    – Khalil
    Mar 21 at 17:02


















1














In your controller you can use the Request object to get all the parameters of your form, for example:



/**
* @Route("/Update")
*/
public function update(Request $request)
$comments = $request->request->get('comments');
...



But I recommend you to use the forms component.






share|improve this answer























  • I have multiple same form in one page, so i cant use forms component

    – Khalil
    Mar 21 at 17:01











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285249%2fcan-i-use-this-form-in-symfony-4%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You can take a look at the Symfony Request Object section of the doc:




// retrieves $_GET and $_POST variables respectively
$request->query->get('id');
$request->request->get('category', 'default category');



So you can retrieve in the controller as:



$request->request->get('comments');





share|improve this answer























  • Thank you, I have another question : I have multiple form how can i get the name of this form ?

    – Khalil
    Mar 21 at 17:02















1














You can take a look at the Symfony Request Object section of the doc:




// retrieves $_GET and $_POST variables respectively
$request->query->get('id');
$request->request->get('category', 'default category');



So you can retrieve in the controller as:



$request->request->get('comments');





share|improve this answer























  • Thank you, I have another question : I have multiple form how can i get the name of this form ?

    – Khalil
    Mar 21 at 17:02













1












1








1







You can take a look at the Symfony Request Object section of the doc:




// retrieves $_GET and $_POST variables respectively
$request->query->get('id');
$request->request->get('category', 'default category');



So you can retrieve in the controller as:



$request->request->get('comments');





share|improve this answer













You can take a look at the Symfony Request Object section of the doc:




// retrieves $_GET and $_POST variables respectively
$request->query->get('id');
$request->request->get('category', 'default category');



So you can retrieve in the controller as:



$request->request->get('comments');






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 21 at 16:51









MatteoMatteo

26.9k106179




26.9k106179












  • Thank you, I have another question : I have multiple form how can i get the name of this form ?

    – Khalil
    Mar 21 at 17:02

















  • Thank you, I have another question : I have multiple form how can i get the name of this form ?

    – Khalil
    Mar 21 at 17:02
















Thank you, I have another question : I have multiple form how can i get the name of this form ?

– Khalil
Mar 21 at 17:02





Thank you, I have another question : I have multiple form how can i get the name of this form ?

– Khalil
Mar 21 at 17:02













1














In your controller you can use the Request object to get all the parameters of your form, for example:



/**
* @Route("/Update")
*/
public function update(Request $request)
$comments = $request->request->get('comments');
...



But I recommend you to use the forms component.






share|improve this answer























  • I have multiple same form in one page, so i cant use forms component

    – Khalil
    Mar 21 at 17:01















1














In your controller you can use the Request object to get all the parameters of your form, for example:



/**
* @Route("/Update")
*/
public function update(Request $request)
$comments = $request->request->get('comments');
...



But I recommend you to use the forms component.






share|improve this answer























  • I have multiple same form in one page, so i cant use forms component

    – Khalil
    Mar 21 at 17:01













1












1








1







In your controller you can use the Request object to get all the parameters of your form, for example:



/**
* @Route("/Update")
*/
public function update(Request $request)
$comments = $request->request->get('comments');
...



But I recommend you to use the forms component.






share|improve this answer













In your controller you can use the Request object to get all the parameters of your form, for example:



/**
* @Route("/Update")
*/
public function update(Request $request)
$comments = $request->request->get('comments');
...



But I recommend you to use the forms component.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 21 at 16:53









Paweł NapierałaPaweł Napierała

30616




30616












  • I have multiple same form in one page, so i cant use forms component

    – Khalil
    Mar 21 at 17:01

















  • I have multiple same form in one page, so i cant use forms component

    – Khalil
    Mar 21 at 17:01
















I have multiple same form in one page, so i cant use forms component

– Khalil
Mar 21 at 17:01





I have multiple same form in one page, so i cant use forms component

– Khalil
Mar 21 at 17:01

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285249%2fcan-i-use-this-form-in-symfony-4%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript