i am currently in the process of creating a form for our sixth forms website. I have been able to validate input boxes and drop down boxes which just consist of numbers between a range. but i am having a problem with validating a drop down which gets it options from a different php page i have:
<select name="choice1_course">
<?php
include("courselist.php");
?>
</select>
i have my validation all set up ready to go, heres an example of my name input box:
<input type="text" name="forename" value="<?=$fields['forename']?>" class="inputBox2" />
if someone could please help me it would be amazing!!
THANK YOU IN ADVANCED

