嗨,在一个 HTML 文档中,我在其中一个 div 中包含了一些内容,但是它只是将 php 代码打印为纯文本,并且有点忽略了 php 标签。这是我的编码方式。
</form> //just some html tags right before the php tags
<br/>
<br/>
<p id="hint"></p>
<?php // the begining of the php tags
form();
function form(){
print "<form method='post' action='$_SERVER[PHP_SELF]'>";
print"<input type='text' name='species'/>";
print"<input type='submit' name='submit'/>";
print"</form>";
}
echo '<div id='language_information'>';
?>
</div>
<div style ="display:none;"id="about" title="How it works">'
这是 chrome 中的检查元素给我的,只是注释和纯文本
<p id="hint"></p>
<!--?php
form();
function form(){
print "<form method='post' action='$_SERVER[PHP_SELF]'-->
";
print"
<input type="text" name="species"></input>
";
print"
<input type="submit" name="submit"></input>