Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在设计一个座位预订系统。我希望复选框代表座位。我想知道如何将每个复选框变成数组以及如何将所有复选框分组在一个画布中,以便它将多个值存储在数据库列中的一个变量中。
我正在使用 Dreamweaver 和 PHP。
You should do some like 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[]" /> ....