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

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -