由于某种原因,嵌入在我的HTML文件中的PHP脚本不能在我的计算机上运行。
所以我在Linux上安装了XAMPP,使用了第一个问题的说明:https://www.apachefriends.org/faq_linux.html(链接到外部站点。)链接到外部站点。
我已使用以下命令进行设置:/ opt / lampp / lampp start
然后我收到消息:启动XAMPP for Linux 7.1.7-0 ... 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>
我感谢所有帮助!
答案 0 :(得分:0)
如果文件扩展名是html文件,请将文件扩展名更改为.php。