如果我在tr&中有一些属性表TD:
<table>
<tr class='test'>
<td align='left'>
how to echo class value here??
</td>
<td align='right'>
how to echo align value here??
</td>
</tr>
</table>
如何回显属性的值并显示如下表格?
|test | right|
答案 0 :(得分:2)
在echo
标记内写下简单的php
: -
<td <?php echo "align='left'"; ?> >
<td <?php echo "align='right'"; ?> >
<tr <?php echo "class='test'";?>>