如何根据总天数打印复选框?
我在根据展位和总天数打印复选框时遇到问题。 故事简介:我有4个展位,分别是A1、A2、A3、A4。我想让客户预订我的摊位。客户可以选择他们想要预订的日期。有时摊位可以预订7天,有时可以预订15天。现在我想按照总天数来展示我的展位,如果展位有15天可用,那么会显示:
如果可用 7 天,则每行仅显示 7 个复选框。
在我的数据库中,我将 Booth、totalDay 和 D1-D15 存储为单个字段。 如何在 PHP 中打印上面的图案?
表结构
I having problem to print out check box according to booth and total days.
Brief story: I have 4 booths, name A1, A2, A3 and A4. I want to let customer booking my booths. Customer can choose which day they want to book.Sometimes the booths available to book for 7 days, sometimes 15 days. Now I want to display my booths according to total days, if booths available for 15 days, then it will display:
if available for 7 days, then it display only 7 checkbox each row.
In my database I store booth, totalDay and D1-D15 as single field.
How to print the above pattern in PHP?
table structure
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
总体思路是这样的:
The general idea is something like this: