I wonder if any one can help me i have these checkboxes which i can click a muliple of boxes good so far
but what i need is to go to differant web pages depending which buttons i click on and if i click on tennis reading and boxing it will take me to a page with these sports on
i know they could be a lot of pages .
I hope I have explaned it ok for you
CODE
<form id="myform" class="cssform" action="">
<p>
<label for="comments">Hobbies:</label><br>
<input type="checkbox" name="tennis" /> Tennis<br />
<input type="checkbox" name="reading" class="threepxfix" /> Reading <br />
<input type="checkbox" name="basketball" class="threepxfix" /> Basketball <br />
<input type="checkbox" name="boxing" /> Boxing<br />
<input type="checkbox" name="football" class="threepxfix" /> Football<br />
<input type="checkbox" name="cricket" class="threepxfix" /> Cricket <br />
</p>
<div style="margin-left: 150px;">
<input type="submit" value="Submit" onClick="test.html"(this.myform)/>
<input type="reset" value="reset" />
</div>
</form>
</td>
</tr>
</table>
<p>
<label for="comments">Hobbies:</label><br>
<input type="checkbox" name="tennis" /> Tennis<br />
<input type="checkbox" name="reading" class="threepxfix" /> Reading <br />
<input type="checkbox" name="basketball" class="threepxfix" /> Basketball <br />
<input type="checkbox" name="boxing" /> Boxing<br />
<input type="checkbox" name="football" class="threepxfix" /> Football<br />
<input type="checkbox" name="cricket" class="threepxfix" /> Cricket <br />
</p>
<div style="margin-left: 150px;">
<input type="submit" value="Submit" onClick="test.html"(this.myform)/>
<input type="reset" value="reset" />
</div>
</form>
</td>
</tr>
</table>
thanks for any help
smartie91