Hi
I'm not sure if I'm going about this in the right way... on my form at http://jon-jackson.co.uk/web-design/site-maintenance.html I'd like to validate by having one of the maintenance options as required. So far I've tried by validating radio boxes with multiple fields etc but all I'm getting is multiple 'please choose from one of the options'-type messages.
Any suggestions please?
here's my code -
I'm not sure if I'm going about this in the right way... on my form at http://jon-jackson.co.uk/web-design/site-maintenance.html I'd like to validate by having one of the maintenance options as required. So far I've tried by validating radio boxes with multiple fields etc but all I'm getting is multiple 'please choose from one of the options'-type messages.
Any suggestions please?
here's my code -
<style type="text/css" media="screen">
<!--
@import url("http://jon-jackson.co.uk/validation/style.css");
-->
</style>
<h1>Maintenance, administration and security of content management system (CMS) websites</h1>
<p>If you're running a CMS website, such as Joomla!, you'll need to keep up-to-date with maintenance and security. Systems are constantly being improved to provide you and your users with better service and experiences and updated to ensure security against any new vulnerability. </p>
<fieldset>
<legend><strong>Monthly maintenance</strong></legend>
<ul>
<li>System updates <br />
System updates are released periodically, usually to enhance funtionality or to fix bugs. You can check if your system is up to date in the Administrator's Control Panel</li>
<li>Security updates <br />
Security updates are important to keep track of because they often involve issues of vulnerability... and we're all keen to reduce the risk of attack </li>
<li>Browser checks <br />
Browser technology is advancing at speed so it's essential to make sure your site works well for all the latest versions of browsers such as Firefox, Safari and Opera</li>
<li>Google reports<br />
Success with Google requires regular Analysis of your visitors to make sure that your website is performing at it's best. Reports provide information enabling your to correct or improve where necessary.</li>
</ul>
<p>
<input TYPE="checkbox" NAME="monthly" VALUE="yes" id="monthly">
<label id="monthly" for="monthly">Yes Please</label>
, I'm interested in Monthly Maintenance </p>
</fieldset>
<fieldset>
<legend><strong>System admin services</strong></legend>
<ul>
<li>System updates <br />
As above</li>
<li>Security updates <br />
As above</li>
</ul>
<p>
<input TYPE="checkbox" NAME="system" VALUE="yes" id="system">
<label id="system" for="system">Yes Please</label>
, I'm interested in System administration services </p>
</fieldset>
<fieldset>
<legend><strong>Security updates only</strong></legend>
<ul>
<li>Security updates <br />
As above</li>
</ul>
<p>
<input TYPE="checkbox" NAME="security" VALUE="yes" id="security">
<label id="security" for="security">Yes Please</label>
, I'm interested in Security Update services</p>
</fieldset>
<fieldset>
<legend><strong>DIY</strong></legend>
<p>Of course, you can take care of administration, maintenance and security yourself.</p>
<p>
<input TYPE="checkbox" NAME="diy" VALUE="yes" id="diy">
<label id="diy" for="diy"></label>
I'm quite happy to take care of administration, maintenance and security.</p>
</fieldset>
<p>Please complete the form below to let me know about your requirements. After submission, if necessary, you will be contacted to complete the process.</p>
<fieldset>
<legend><strong>Your Details</strong></legend>
<table border="0" cellspacing="0" cellpadding="4">
<tr>
<td><label1 for="name">Your Name:</label1>
</td>
<td><input type="text" name="name" size="40">
</td>
</tr>
<tr>
<td><label1 for="email">E-mail:</label1>
</td>
<td><input name="email" type="text" size="40">
</td>
</tr>
<tr>
<td><label1 for="dayphone">Day Phone:</label1>
</td>
<td><input type="text" name="day_phone" size="20">
</td>
</tr>
<tr>
<td><label1 for="evephone">Evening Phone:</label1>
</td>
<td><input type="text" name="night_phone" size="20">
</td>
</tr>
</table>
</fieldset>
<br />
<fieldset>
<legend><strong>When would you like the maintenance to begin?</strong></legend>
<br/>
<table border="0" cellspacing="0" cellpadding="4">
<tr>
<td><label2 for="month">
Month</td>
<td><select NAME="month" id="startmonth" size="1">
<option SELECTED VALUE="none">Select Month</option>
<option VALUE="Jan">Jan</option>
<option VALUE="Feb">Feb</option>
<option VALUE="Mar">Mar</option>
<option VALUE="Apr">Apr</option>
<option VALUE="May">May</option>
<option VALUE="Jun">Jun</option>
<option VALUE="Jul">Jul</option>
<option VALUE="Aug">Aug</option>
<option VALUE="Sep">Sep</option>
<option VALUE="Oct">Oct</option>
<option VALUE="Nov">Nov</option>
<option VALUE="Dec">Dec</option>
</select></td>
</tr>
<tr>
<td><label2 for="year">Year</label2>
</td>
<td><select name="select" id="startyear" size="1">
<option value="2008" selected="selected">2008</option>
<option value="2009">2009</option>
<option value="2009">Immediately</option>
</select>
</td>
</tr>
</table>
</fieldset>
<p>My terms are published at <a href="http://jon-jackson.co.uk/index.php/terms-and-conditions.html">jon-jackson.co.uk/index.php/terms-and-conditions.html</a><br>
</p>
<input name="send it" type="submit" class="submit" id="send it" value="Submit" />