php - How to Make Checkboxes Into Array In Dreamweaver -
i designing seat reservation system. want check boxes represent seats. want know how make each check boxes array , how group check boxes in single canvas store multiple values in 1 single variable in database column.
i using dreamweaver , php.
you should below:
<input type="checkbok" value="1" name="seat[]" /> <input type="checkbok" value="2" name="seat[]" /> <input type="checkbok" value="3" name="seat[]" /> <input type="checkbok" value="4" name="seat[]" /> ....
Comments
Post a Comment