Menu
×
×
Correct!
Exercise: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!Next ❯ |
This will reset the score of ALL 90 exercises.
Are you sure you want to continue?