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
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
add a comment |
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
I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.
– Cid
Mar 21 at 16:45
add a comment |
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
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
symfony controller twig symfony-forms symfony4
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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');
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
add a comment |
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.
I have multiple same form in one page, so i cant use forms component
– Khalil
Mar 21 at 17:01
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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');
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
add a comment |
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');
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
add a comment |
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');
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');
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
add a comment |
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
add a comment |
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.
I have multiple same form in one page, so i cant use forms component
– Khalil
Mar 21 at 17:01
add a comment |
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.
I have multiple same form in one page, so i cant use forms component
– Khalil
Mar 21 at 17:01
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
I suggest you to follow tutorials about forms with symfony 4. This would be too broad to cover.
– Cid
Mar 21 at 16:45