I'm with you to that point. How do I define the ids in the HMTL?
This is the HTML I have for my form, I thought I had the ID's defined, but I guess not.
I can't tell you how much I appreciate your help. I understood bits and pieces of this, but now its all coming together
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="Business.css" />
<title>Wadsley Tech Services Appointments</title>
<meta name="title" content="Wadsley Tech Services" />
<meta name="keywords" content="computer help, computer geek, PC technician, James Wadsley, computer repair, Wadsley Tech Services" />
<meta name="description" content="PC Consulting by James Wadsley" />
<meta name="author" content="James M Wadsley" />
</head>
<body>
<div id="container">
<center>
<img src="Newlogo-4.jpg" width="50%" alt="Logo"/>
</center>
<ul id="nav">
<li><a href="index.html">Home</a></li>
<li><a href="Services.html">Services</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="Appointment.html">Appointments</a></li>
</ul>
<center>
<h1>Make An Appointment</h1>
<h2>Please fill in all areas of the form for a faster response</h2>
<form method="post" action="mail1.php">
<h3>
First Name: <Input type="text" name="firstname" /> Last Name: <Input type="text" name="lastname" />
Contact # / Email: <Input type="text" name="number" /> Best Time to Contact: <Input type="text" name="time" /><br><br>
Type of Problem: <Input type="checkbox" name="problem" value="Computer" />Computer <Input type="checkbox" name="problem" value="Perephial" />Mouse, Keyboard, External Hard Drive, Etc <Input type="checkbox" name="problem" value="Internet" />Internet Connection <Input type="checkbox" name="problem" value="Printer" />Printing Issues <Input type="checkbox" name="problem" value="Other" />Other<br><br>
Priority: <Input type="radio" name="priority" value="High" />High <Input type="radio" name="priority" value="Medium" />Medium <Input type="radio" name="priority" value="Low" />Low<br><br>
<p>
Description of Problem:
</p>
<textarea rows="10" cols="30"></textarea>
<br>
<br>
<input type="submit" value="submit">
<input type="reset" value="reset"
</h3>
</form>