I have a form that uses some PHP-style input names in order to be able
to process the input values as an array after submitting:

<input id="date1" name="date[]" class="required" size="10" value=""
type="text" />
<input id="date2" name="date[]" class="required" size="10" value=""
type="text" />
<input id="date3" name="date[]" class="required" size="10" value=""
type="text" />

Since the inputs have identical names, the Validate plugin will only
flag the first field as being required. Is there a way around this, or
am I better off trying to re-think my server-side processing?

Thanks,

  Owen

Reply via email to