help me with this html prob.?

  • Thread starter Thread starter mitchell o
  • Start date Start date
M

mitchell o

Guest
i need to create a form using HTML go to this website savestudenttravel.com.au and about halfway down it shows a petition form....what will i need to make this? and it shows the form i want!
 
Learning HTML forms is somewhat a complex task it will take a few hours experimenting but a good place to start is W3Schools.org they have some good tutorials on HTML, JavaScript, and server-side scripting like PHP or ASP for processing your form.
 
The HTML of the form is the easy part, the more complex part is the form action which is the script that processes the form and saves it to a database or emails or what have you, you can find free processing forms on the web like http://www.freeforms.org/

the HTML is pretty simple for the form

<form name='petition' method='post' action='/' class='petition'>


Name:<br/>
<input type='text' name='petition_name' value=''/><br/>
E-mail address:<br/>
<input type='text' name='petition_email' value=''/><br/>
Postcode:<br/><input type='text' name='Postcode'/><br/>
Do not display name on website: <input type='checkbox' name='petition_keep_private'/><br


<input type='submit' name='Submit' value='Sign the petition'/>
</form>
 
Back
Top