Forum Moderators: coopster
1)How do I make this work?
My db looks like this (other values)
enum('','1','2','3')
if ($submit) {
$enom-table = implode(",", $GValue);
<form met....
<input type="checkbox" name="GValue[]" value="1">
<input type="checkbox" name="GValue[]" value="2">
<input type="checkbox" name="GValue[]" value="3">
</form>
2) How do I reverse it, meaning follwing funktion but with checkbox and not Select?
<option value="<?php echo $Ethnicity?>"><?php echo $Ethnicity?></option>