/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// 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;