answersLogoWhite

0


Best Answer

You can't. You need a Server-side scripting language such as php.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you save the input from an HTML form to a notepad document?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Long form of HTML?

To code HTML, you'll need a text editor such as Notepad or Notepad++. You can write your HTML code in there and save the pages as "something.html". Make sure you have the ".html" extension. If you double click the file you have made, it will open up a web browser and you'll see what your HTML has done.


How do you make it so text boxes in HTML only accept numbers?

Here is the HTML form input code to accept only numbers. You can change it to whatever fits your situation. The input type controls what the input form will accept. <form> Quantity (between 1 and 10): <input type="number" name="quantity" min="1" max="10"> </form>


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

A form can be created in HTML using the <form> tag. Inside form tag we can use elements like input, submit or reset.


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 can you pass data from one form to anather in php?

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


Where can you put php code blocks inside a HTML document?

//Down below you can see the php code block. <html> <form> <p><b><font color="000000" font size="2" face="Verdana">Name:</font></b></p> <input type=text size="40" name="name"> </textarea> <br><br> <input type="hidden" name="stamp" value="<?php echo md5(uniqid(rand(),true)); ?>" /> <input name="Submit1" type="submit" value="submit" style="width: 117px"> </form> <html>


What is the full form of HTML dom?

Hypertext Markup Language, Document Object Model


Which tag is used to hide the field on a HTML form?

The input tag with the type attribute as hidden.


Can you list some HTML codes?

Some HTML codes include tag structure in them. The tags such as <form>, <input>, <select> etc work the most.


What is the HTML code for input student information?

You can create a form for student input information. It can create name, roll number, class, section etc.


How do you create forms using ASP and HTML?

You can use a WYSIWYG html editor to drag and drop html form controls and program their function. An html editor such as Microsoft Front Page or Adobe DreamWeaver can do these tasks.


How can you put forms in your HTML browser?

Adding a form to an HTML web site is easy. All it requires is the use of the <form> tag with multiple <input> tags. A simple form would look like: <form name="input" action="html_form_action.asp" method="get"> Username: <input type="text" name="user" /> <input type="submit" value="Submit" /> </form> Other types of inputs that can be used include text boxes, password fields, radio buttons, and check boxes.