Apache正在工作。我尝试添加.htaccess。该文件为html。我的代码编辑器是方括号。
<label for="name"><b>Full Name:</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>