如您所见,我的php代码显示错误并且未被vs代码识别。我单独的.php文件运行平稳,但是我无法在html内编写php代码。我正在使用xampp,linux和vs代码
代码:
myphp.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<form method="POST" action="myphp.php">
Name : <input type="text" name="name">
<span class="error">* <?php echo $nameEmp; ?></span>
<br>
E-mail : <input type="text" name="email">
<br>
Link : <input type="text" name="link">
<br>
Comment : <textarea name="comment" rows="5" cols="40"></textarea>
Gender :
<input type=" radio" name="gender" value="female">Female
<input type="radio" name="gender" value="male">male
<br>
<input type="submit" name="submit" value="Submit">
</form>
</body
</html>
编辑者:
答案 0 :(得分:1)
您已经为php编写了正确的语法,但是要使php正常工作,您必须将文件扩展名更改为.php而不是.html