/ Published in: PHP
Expand |
Embed | Plain Text
// FORM: <input type="checkbox" class="community" name="community[]" value="Lakewood Court Townhomes" id="i-lake" /> <input type="checkbox" class="community" name="community[]" value="Belmont Court Condominiums" id="i-belm" /> // PROCESSING PAGE: $checkboxarray = $_POST[ 'community' ]; $checkboxvar .= $checkboxarray[$i]; $checkboxvar .= ', '; } } echo $checkboxvar;
You need to login to post a comment.
