FWDWLVR wrote:
> I changed the checkboxes to drop downs and the
sreach/results work fine. I
> need to do some more reseacrh and find a fix for the
checkbox issue. Ever heard
> of this? Know a workaround?
This is true of checkboxes, radio buttons, and
multiple-select menus. If
no value is selected, the form data contains no reference to
them.
The solution is to set a default value after the form has
been
submitted. In PHP, you do it like this:
<?php $_POST['checkbox'] = isset($_POST['checkbox']) ?
$_POST['checkbox'] : 'default value'; ?>
--
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of
ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/