0

I am trying to display an index.php in a web browser. These are the contents of index.php:

<?php

echo "PHP Part";
?>

<html>
<h1> html part </h1>
</html>

This only prints out html part to the screen of the browser. Why isn't the php being displayed?

the page source looks like:

<?php
echo "PHP Part";
?>
<html>
  <h1>html part</h1>
</html>
4

1 回答 1

0

如果您安装了 WAMP,请在您的 PC 中安装 Wamp 或 Xampp 服务器,而不是将此文件保存在 WWW 文件夹中(它位于 wamp 文件夹中)

如果您安装了 Xampp,则将此文件保存在 htdocs 文件夹中(它位于 xampp 文件夹中)

之后确保您的 xampp 或 wamp 服务器正在运行

转到您的浏览器

写 localhost/filename.ext

确保您将文件保存为 .PHP

于 2013-06-07T18:40:20.183 回答