当我尝试 运行 我在 chrome 中的代码时,我看到的是我在 phpstorm 中编写的代码,而不是它必须执行的功能

When I try to run my code in chrome, i see the code that I have made in phpstorm and not the function that it has to do

我刚开始使用 php,我安装了 xampp 并获得了 运行ning。现在我想要 运行 我拥有的代码,它是一个简单的打印功能,但是当我尝试 运行 时,我看到代码出现在 Chrome 而不是打印。这就是我的代码中的内容:<?php echo "Hello World!"; ?>,当我尝试 运行 时,我在 chrome 上得到了完全相同的结果

你应该启动 apache 和 MySQL 如果你在 XAMPP 上连接到数据库然后把你的脚本放在 htdocs 文件夹然后你可以 运行 你的代码通过去 http://localhost

另一种解决方案是通过 运行 执行此命令来启动 php 服务器

php -S 127.0.0.1:8000 index.php