当前位置:中国飞客联盟文章中心编程学习脚本语言 → 在php中输出html代码

在php中输出html代码

减小字体 增大字体 作者:无从考证  来源:中国建站基地  发布时间:2007-12-28 4:06:10

<?php
echo <<< EOT
                 <table width=80% border="2" cellpadding="3" cellspacing="0" bordercolor="#808080">
                <tr bgcolor="#84A9E1">
                <td align="center">ClassID</td>
                <td align="center">stuno</td>
                <td  align="center">学生姓名</td>
                <td align="center">家长姓名</td>
                <td align="center">家长手机号</td>
                </tr>
EOT;
?>