Hi,
What i want is to have a checkbox area where the items i select are stored in a array. Im guessing there should be a some code to find out what has been checked.
Any help with this would be greatly appreciated.
echo '<form action="myown3.php" method="post" name="domaintest" action="_self">';
echo '<input name="submitform" type="submit" value="Submit Domain Info">';
foreach($domains->domainName as $value) {
echo (' <label><input type="checkbox" name="domain_custom" value="'.$value.'" id="'.$value.'">'.$value.'</label><br>');
}
echo '</form>';