Good morning. My action is not submit value post. I try exemple answer question. Thanks you | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Good morning. My action is not submit value post. I try exemple answer question. Thanks you

submit action tag with method post https://code.sololearn.com/WFJ794KN0bwt/?ref=app

23rd Aug 2022, 5:58 AM
Malick Diagne
Malick Diagne - avatar
1 Answer
0
You're not echoing the post data. You're echoing a variable that you haven't assigned any values to. You would need to do: echo $_POST["name"]; etc. Or you would need to assign the post data to a variable before echoing it, like $name = $_POST["name"]; echo $name;
6th Sep 2022, 11:48 PM
Benjamin Rogers
Benjamin Rogers - avatar