answersLogoWhite

0

What is the HTML form process?

Updated: 8/16/2019
User Avatar

Wiki User

15y ago

Best Answer

HTML: Hyper text markup language Form is an object of a HTML..Inside it one can use many objects like text box,button. <form name="formname" id="f1"> our content

</form>

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the HTML form process?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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.


What is process of properly ordering HTML tags?

&lt; html &gt; &lt; head &gt; &lt;/ head &gt; &lt; body &gt; &lt;/ body &gt; &lt;/ html &gt; Without spaces.


What is the full form HTML?

It is Hypertext Markup Language (HTML)


How does HTML code produce the form displayed in the browser?

As subtle distinction between HTML and browser is that HTML code does not produce the form; the browser produces the form. The browser interprets HTML code to determine how to display page content.


How do you go from HTML form to php?

Build your form in HTML and specify your PHP file in the action of the document. HTML does the form stuff, PHP the processing (although you can - of course - use HTML inside PHP via print() or echo(), too)


How would you make an html form where there some areas for text and one for an image and when the form is submitted the result is a copy of the image with the text responses embedded into the code?

This is not possible using HTML. You will need to use a server-side script, such as PHP, or a client-side script, such as JavaScript. HTML is a markup language, and does not have the capacity to process data or compute logic.


What is HTML View?

The view of the website in form of HTML is HTML view. It is the basic code you write in text editor.


How do you make registration form in HTML?

no


How do you make forms on HTML?

Forms in HTML could be created very easily. They can be used by &lt;form&gt; tag predefined in HTML.


Can HTML form be sent by Ajax?

Yes. You can use AJAX to submit the form. You can also use AJAX to get the actual HTML to produce the form (although you might also simply use that AJAX call to describe the form and then produce the HTML on the receiving end.)


What three tags create the body of the form in HTML?

A form can be created in HTML using the &lt;form&gt; tag. Inside form tag we can use elements like input, submit or reset.


How do you insertupdate and delete queries in a one form by using php?

It is not possible for an html form to do 4 simultaneous process. What you need to do is create 4 html forms for insert, update, delete, show data on same php page. Use if...elseif....else statements to load alternative forms on the same page and process them according to user input. User doesn't know there are 4 separate forms. Use &lt;?php $_SERVER['PHP_SELF']; ?&gt; to process form &amp; output other forms on same page.