在php中回显表属性值

时间:2015-10-23 05:33:47

标签: php

如果我在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|

1 个答案:

答案 0 :(得分:2)

echo标记内写下简单的php: -

<td <?php echo "align='left'"; ?> >
<td <?php echo "align='right'"; ?> >
<tr <?php echo "class='test'";?>>