×
×
Correct!
Specify that the form is submitted using the "POST" method.
<form action="/action_page.php" @(13)>
Name: <input type="text" name="name"> <input type="submit"> </form>
<form action="/action_page.php" method="post">
Name: <input type="text" name="name"> <input type="submit"> </form>
<form action="/action_page.php" method='post'>
Name: <input type="text" name="name"> <input type="submit"> </form> Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 106 exercises.
Are you sure you want to continue?