vs代码无法识别html中的php代码
Posted
技术标签:
【中文标题】vs代码无法识别html中的php代码【英文标题】:vs code not recognizing php code inside html 【发布时间】:2020-01-25 22:59:10 【问题描述】:如您所见,我的 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>
编辑:
【问题讨论】:
请为您的页面使用扩展名 .php。您不能在扩展名为 .html 的文件中使用<?php
标记 :)
欢迎来到***。请在问题上显示图像。请遵循社区准则或搜索how to ask questions on ***
。
【参考方案1】:
您已经为 php 编写了正确的语法,但要使 php 正常工作,您必须将文件扩展名更改为 .php 而不是 .html
【讨论】:
以上是关于vs代码无法识别html中的php代码的主要内容,如果未能解决你的问题,请参考以下文章
VS 2014 CTP 无法识别 mscorlib 中的命名空间
VS Code Python安装和Python解释器无法识别
TSX 文件中无法识别 React.js 代码(VS 2015 Update 1 RC)