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
1 Antwort
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;