php新手,需要从html语句格式化php页面
我的问题是页面显示垂直的选项线。我想将它们放入 4 列表格中进行显示,而不是仅在页面下方显示。我要更改的代码如下:
</tr>
<tr>
<td>{LOOP: JOBTYPE}
IF("{JOBTYPE.parent_id}"!="0"){ {:IF}
IF("{JOBTYPE.catcount}"=="0"){<input type="checkbox" name="jobtype[{JOBTYPE.id}]" value="{JOBTYPE.id}" {JOBTYPE.selected}>{JOBTYPE.title}<br>{:IF}
IF("{JOBTYPE.catcount}"!="0"){<strong>{JOBTYPE.title}</strong><br>{:IF}
{/LOOP: JOBTYPE}</td>
</tr>
<tr>
<td> </td>
</tr>
如您所见,我在那里有另一列,可以进一步拆分单元格,但我希望作业列表在整个页面上显示,而不是垂直显示。
My problem is the page shows a vertical line of options. I want to put them into a 4 column table to display instead of just down lhs of page. The code I want to change is as follows:
</tr>
<tr>
<td>{LOOP: JOBTYPE}
IF("{JOBTYPE.parent_id}"!="0"){ {:IF}
IF("{JOBTYPE.catcount}"=="0"){<input type="checkbox" name="jobtype[{JOBTYPE.id}]" value="{JOBTYPE.id}" {JOBTYPE.selected}>{JOBTYPE.title}<br>{:IF}
IF("{JOBTYPE.catcount}"!="0"){<strong>{JOBTYPE.title}</strong><br>{:IF}
{/LOOP: JOBTYPE}</td>
</tr>
<tr>
<td> </td>
</tr>
As you can see I have another column there and can split cell further but I would like the job list to be displayed across the page not vertically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用以下 HTML 模板创建 4 列:
Simply create 4 columns using the following HTML template: