我正在做一个项目来创建一个简单的 PHP 应用程序。
第一步,我想使用 php 在网络服务器上显示“Hello world”程序
<html>
<body>
<?php
echo "hello world";
?>
<p>
Here we go
</p>
</body>
</html>
我已经上传了文件并显示了 HTML “Here we go”,但没有显示 PHP echo "hello world"
,有人知道这可能是什么原因吗?