attribute_list.tpl.php

来自「采用模块化开发」· PHP 代码 · 共 18 行

PHP
18
字号
<table cellpadding="2" cellspacing="1" border="0" align="center" width="100%" style="background:White;border:#F1F3F5 1px solid;">
<tr>
<td  width='20%' class='tablerow' colspan='2'><strong><font color="Blue">属性列表</font></strong></td>
</tr>
<?php
foreach ($attlists as $attlist)
{
$att_ids[] = $attlist['att_id'];
?>
<tr>
<td  width='20%' class='tablerow'><strong><?=$attlist['att_name']?></strong></td>
<td  width='80%' class='tablerow'><?=$attlist['attinput']?></td>
</tr>
<?php
}
?>
</table>
<input type="hidden" value="<?php echo new_htmlspecialchars(serialize($att_ids));?>" name="pdt_att_ids">

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?