answersLogoWhite

0

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

User Avatar

Wiki User

14y ago

What else can I help you with?

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.


What input operation that requires a conversion to digital form prior to input?

An input operation that requires conversion to digital form prior to input is scanning a physical document. A scanner captures the image of the document and converts it into a digital format, such as a PDF or JPEG file, which can then be processed by a computer. This conversion allows for easier editing, sharing, and storage of the information contained in the document.


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.


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.


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.