Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

The Method Attribute

The method attribute determines the HTTP method used for submitting form data.

Form data can be sent as URL variables using method="get" or as an HTTP post transaction using method="post".

By default, form data is submitted using the GET method.

Example

This example uses the GET method to submit the form data:

<form action=”/action_page.php” method=”get”>

Example

This example submits the form data using the POST method:

<form action=”/action_page.php” method=”post”>