answersLogoWhite

0


Best Answer

An old way is to use an email in the form's action attribute, but this requires the user to have a mail account/application set up on his or her computer, which isn't very handy.

The other way is to use php to either insert/update the data in a database or to return the information in another web page, or both. This can be done by specifying your receiving php file in the form's action tag, for example:

<form action="receive.php" method="POST">Insert form elements here</form>

However, using php requires that your webserver supports php.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the methods of retrieving data from HTML form?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is method in HTML form?

There are two form methods: method="POST" and method="GET" GET makes the page it sends the form info from retrieve it from the URL. POST sends the data, and can handle more characters than GET.


What are the methods of presenting data?

two methods of presenting data 1.tabular form 2.pictorial form


How do you get data back and forth between HTML and PHP?

Via AJAX. Another simpler way would be to use form elements and submit them via html and let PHP process the data. Processed data can be output in html form via echo or print statements in php.


How to pass form data between HTML pages without using url in java?

This can be accomplished by submitting the form data using the POST method.


What is methord and action in form in HTML?

Method refers to the way that the data is transferred. It can either be GET or POST. Actions refers to the page in which the form data is sent.


How can you enter data in more than one line in an HTML form?

You can enter data using the input type of the form. It can be either text or textbox depending on usage.


How can you pass data from one form to anather in php?

A file: practise.html &lt;html&gt; &lt;body&gt; &lt;form method="post" action="another.php" enctype="multipart/form-data"&gt; &lt;input type="text" name="field1" id="field1" /&gt; &lt;input type="submit" name="submit" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; File: another.php &lt;html&gt; &lt;body&gt; &lt;?php $text = $_POST['field1']; ?&gt; &lt;form&gt; &lt;input type="text" name="textfield1" id="txtfield" value="&lt;?php echo $text; ?&gt;" /&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt;


What is the code to insert table in signup form in HTML?

First you have to get the data from signup form. Then using &lt;td&gt; and &lt;tr&gt; you can populate the results.


What is meant by method equals post in HTML language?

method="POST" is a common attribute of the HTML &lt;form&gt; tag. What this does is tells the form that it needs to "post" the data to whatever file you have specified in your "action" attribute of the form tag. So your form tag might look something like this: &lt;form action="receive.php" method="POST"&gt;Insert form data here&lt;/form&gt; Again, this will tell the form to post all the data that the user has entered into it to the receive.php file.


Why asp is better than HTML?

ASP is for generating dynamic data driven websites. The data it sends to the user is in the form of HTML. HTML is the markup language which allows your browser to render a webpage into a particular format through the use of CSS. At the end of the day, ASP makes use of HTML to make interactive websites


What is the purpose of a data capture form?

A data capture form refers to methods of automatically identifying objects. It also collects data and enters data directly into computer systems.


Is javascript a form of HTML used to add dynamic capabilities and interactivity to webpages?

Javascript is a language used WITH HTML. It is not HTML. HTML is a markup language used to delineate between different types of data. JavaScript is a programming language, containing logic, functions, and object.