在PHP中使用html表标签的php语法错误

时间:2017-11-01 14:12:50

标签: php html-table syntax-error

我试图在php中使用html标签时出现语法错误.....
错误是:

  

"解析错误:语法错误,意外'文字' (T_STRING),期待','或';'在第21行"

的C:\ xampp \ htdocs \ update.php中
echo"<table>
            <tr><th>sid</th><th>fname</th><th>lname</th></tr>
            <tr><td><input type="text" name="sid"></td><td><input type="text" name="fname"></td><td><input type="text" name="lname"></td></tr>
        </table>";

1 个答案:

答案 0 :(得分:0)

您需要转义"双引号或使用'单引号:

echo '<table>
            <tr><th>sid</th><th>fname</th><th>lname</th></tr>
            <tr><td><input type="text" name="sid"></td><td><input type="text" name="fname"></td><td><input type="text" name="lname"></td></tr>
        </table>';

另外,我建议你在你的php块之外编写你的html代码。