如何修复嵌入式PHP代码以HTML文本形式显示

时间:2019-05-22 02:53:03

标签: php html

  1. 我试图将名字作为必填字段,并在空白时在span标签中显示该消息。在发送表单之前,当前正在显示跨度文本。 2.所需模式下的php开头标记始终显示为错误。 3.我的关闭输入标签现在显示在网页上,这可能是由于php标签错误所致,但我可能是错的。

Apache正在工作。我尝试添加.htaccess。该文件为html。我的代码编辑器是方括号。

  <label for="name"><b>Full Name&colon;</b>
  <?php if ($missing && in_array('name', $missing)) : ?>   
  <span class="warning">Please enter your name</span>    
  <?php endif; ?>   
  </label>
  <input type="text" name="firstname" id="name" placeholder="First" required pattern="[a-zA-Z]+"
    <?php
    if ($errors || $missing) {
      echo 'value="' . htmlentities($name) . '"';   
    }    
    ?>
    >
   <input type="text" name="lastname" id="name" placeholder="Last" required pattern="[a-zA-Z]+"><br><br>

0 个答案:

没有答案