Jump to content

[HTML] Forms


blasphemy.
 Share

Recommended Posts

This is just one example of html code used to create a form. It is what a user might use to enter information. But to process such information you need a php file (for example) that sends the info to the database, mailed, etc.

HTML
<form method="post" name="myform" action="process.php">
	<!--text fields used to enter information-->
	<input type="submit" value="Send">
	<input type="reset" value="Delete" />
</form>
Edited by Cdorsu
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.