【问题标题】:unexpected start tag (body) html意外的开始标签(正文)html
【发布时间】:2018-05-14 19:27:48
【问题描述】:

您好,当我运行整个项目代码时,我收到了意外开始标记(正文)的错误。身体线显示错误

?>
 <html>
 <body>
        <form method="GET" action="<?php echo $client->getRequestUri();?> ">
        <input type='submit' name='start' value='Start'/>
        </form>
 </body>
 </html>
 <?php

【问题讨论】:

标签: php html header tags body-parser


【解决方案1】:

删除标签,除非你也想回显 和所有其他标签

 <html>
 <body>
        <form method="GET" action="<?php echo $client->getRequestUri();?> ">
        <input type='submit' name='start' value='Start'/>
        </form>
 </body>
 </html>

<?php
echo "<html>
 <body>
        <form method='GET' action=".$client->getRequestUri().">
        <input type='submit' name='start' value='Start'/>
        </form>
 </body>
 </html>";
 ?>

【讨论】:

  • " . $client-&gt;getRequestUri(); . "
猜你喜欢
  • 1970-01-01
  • 2018-09-28
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2014-07-22
  • 1970-01-01
  • 2011-08-21
  • 2020-05-22
相关资源
最近更新 更多