~Welcome to My Homework Pages~

Welcome image.


Heading image.Forms -Lesson One

Setting Up the Form Code

Here is the code...

<html>
<head>
<title>Simple Survey</title>
</head>
<body>
<h3>Please fill out my Survey</h3>

<form method="post" enctype="multipart/form-data" action="http://pub17.bravenet.com/emailfwd/senddata.php" accept-charset="utf-8">
<input type="hidden" name="usernum" value="xxxxxxxxxx">
<input type="hidden" name="cpv" value="2">
<!-- DO NOT CHANGE OR REMOVE THE 3 TAGS ABOVE THIS COMMENT-->

Setting up radio buttons

1) How old are you ?
Under 18 years old
Between 18-24 years old
Between 25-34 years old
Between 35-44 years old
More than 44 years old

 

<dl>
<dt> 1) How old are you?</dt>
<dd><input type="radio" name="Age" value="-18">Under 18 years old</dd>
<dd><input type="radio" name="Age" value="18-24">Between 18 and 24 years old</dd>
<dd><input type="radio" name="Age" value="25-34">Between 25 and 34 years old</dd>
<dd><input type="radio" name="Age" value="35-44">Between 35 and 44 years old</dd>
<dd><input type="radio" name="Age" value="44+">More than 44 years old </dd>
</dl>
<dl>
<dt> 2) How often do you visit my page?</dt>
<dd><input type="radio" name="Visit" value="Daily">Every Day</dd>
<dd><input type="radio" name="Visit" value="Weekly">Every Week</dd>
<dd><input type="radio" name="Visit" value="Monthly">Once per month</dd>
<dd><input type="radio" name="Visit" value="Yearly">Once per year</dd>
</dl>

Wrapping it Up

<p> <input type="submit" value=" Send "> <input type="reset" value=" Clear "></p>

<input type="hidden" name="subject" value="Survey Results">

<input type="hidden" name="thankyou" value="http://yourusername.bravehost.com/nextpage.html"> 

Next I will be putting this all into action. Next you will find my survey

Note to self: Since bravenet doesnt host my site, my survey will be directed to their pages for verification etc and then be directed back to my site.

TO MY SURVEY SAMPLE WITH RADIO BUTTONS

back a page.    Next page.

Html 201-Tables Lessons Html 101 Lessons WebTech University Html 201-Frames Lessons Html 201-Forms Lessons