php不会使用xampp运行[重复]

Posted

技术标签:

【中文标题】php不会使用xampp运行[重复]【英文标题】:php won't run using xampp [duplicate] 【发布时间】:2018-01-06 08:44:26 【问题描述】:

由于某种原因,嵌入在我的 html 文件中的 php 脚本无法在我的计算机上运行。

所以我在 Linux 上安装了 XAMPP,使用此常见问题解答中关于第一个问题的说明:https://www.apachefriends.org/faq_linux.html(链接到外部站点。)链接到外部站点。

我已经使用以下命令进行了设置:/opt/lampp/lampp start

然后我收到消息:正在为 Linux 7.1.7-0 启动 XAMPP... XAMPP:启动 Apache ......好的。 XAMPP:启动 mysql ......好的。 XAMPP:正在启动 ProFTPD...好的。

我不知道为什么我收到有关启动 PROFTPD 而不是 PHP 的消息,我认为这可能是其中的一部分。

以下是我的 HTML 文件:

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset = "utf-8">
<title>CS80 Final</title>
<link rel = "stylesheet" type ="text/css" href = "final.css" />
<!-- <script type = "text/javascript">
</script> -->
</head>
<body>
<h1 id ="title"> <bold> Garden Exchange </bold> </h1><!-- Title of the page-->
<section> <!-- Section regarding making a selection -->
What type of plant are you looking for?
<input type = "text" id = "plant"/>
<input type = "button" id = "plantbutton" value = "Find plant"/><br>
<br/> <br/>
Looking to list a plant instead?
<input type = "button" id = "input button" value = "List a plant"/>
</section>
<?php
$nam = array("Bob", "Willow", "sagment lamp");
if (preg_match("/low/",$nam))

print ("<p> 'low' was found </p>");

?>
<section id ="listings" style: hidden="hidden">
</section>
<section id = "listing" style: hidden = "hidden">
</section>
</body>
</html>

感谢我能得到的所有帮助!

【问题讨论】:

您有多个明显的语法错误但看不到它们,因为错误报告已关闭。打开它,您会发现问题所在。 如何开启? 看问题顶部的链接 【参考方案1】:

如果是 html 文件,请将文件扩展名更改为 .php。

【讨论】:

如果是html文件那为什么要改成php文件呢? 因为 php 脚本不在 html 文件中运行。文件的扩展名应该是 .php 来执行 php 代码。

以上是关于php不会使用xampp运行[重复]的主要内容,如果未能解决你的问题,请参考以下文章

如何在最新的 XAMPP 上运行已弃用的 php 代码 [重复]

php文件中的xampp脚本不会延续到html文件[重复]

我使用netbeans并且我想运行我的PHP应用程序,我已经在我的机器上安装了xampp和wampserver [重复]

XAMPP 不会运行 php [关闭]

php代码在html文件中不起作用,.htaccess配置,dreamweaver php服务器设置,使用xampp [重复]

安装后XAMPP phpMyAdmin不会启动[重复]