当前位置 : 主页 > 网页制作 > html >

如何在html文件中运行php脚本?

来源:互联网 收集:自由互联 发布时间:2021-06-12
我想知道如何在.html文件扩展名中运行一个简单的 PHP代码? 您不能在以.html结尾的html页面中运行PHP.除非该页面实际上是PHP,并且扩展名已从.hp更改为.hp,从.php更改为.html 你的意思是:
我想知道如何在.html文件扩展名中运行一个简单的 PHP代码? 您不能在以.html结尾的html页面中运行PHP.除非该页面实际上是PHP,并且扩展名已从.hp更改为.hp,从.php更改为.html

你的意思是:

index.html
<html>
...
<?php echo "Hello world";?> //This is impossible


index.php //The file extension can be changed using htaccess, ex: its type stays php but will be visible to visitors as index.html

<?php echo "Hello world";?>
网友评论