gpt4 book ai didi

php - 为什么 php 标签在 html 文件中不起作用?

转载 作者:行者123 更新时间:2023-12-03 22:48:19 25 4
gpt4 key购买 nike

我有一个 register.php 文件,并且在该文件中定义了 $name=""

global $name;
$name = "";

现在在 html 表单中我有:
    <form name="register" action="register.php" method="post" class="smart-green">


<h1>Contact Form
<span>Registration Form</span>
</h1>
<label>
<span>Username:</span>
<input id="name" type="text" name="username" value ="<?php echo $name;?>" placeholder="Enter your user name" maxlength="20" />
</label>
</form>

但输出是 <?php echo $name; ?>而不是空的!知道如何解决这个问题吗?

最佳答案

您的 Web 服务器将按原样为 HTML 页面提供服务。它只会尽可能地解析 HTML。如果您使用 PHP 扩展名重命名页面,Web 服务器将使用 PHP 解释器解析它,这也是 PHP 将被解释的时候。同样,正如 Fred 在评论中指出的那样,您可以告诉 Apache 将 HTML 视为 PHP。

关于php - 为什么 php 标签在 html 文件中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22776583/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com