在PHP标签中的一段代码被当做html处理,不知道为什么,求解。下面附下源代码:

<html><head><title>Book-O-RamaSearchResults</title></head><body><h1>Book-O-RamaSearch... <html>
<head>
<title>Book-O-Rama Search Results</title>
</head>
<body>
<h1>Book-O-Rama Search Results</h1>
<?php
//create short variable names
$searchtype = $_POST['searchtype'];
$searchterm = trim($_POST['searchterm']);
if(!$searchtype || !$searchterm){
echo 'You have not entered search details.
Please go back and try again.';
exit;
}
//check if opened
if(!get_magic_quotes_gpc()){
$searchtype = addslashes($searchtype);
$searchterm = addslashes($searchterm);
}
$db = new mysqli('localhost','root','','books');
if (mysqli_connect_errno()){
echo 'Error:Could not connect to database.Please try again later.';
exit;
}

$query = "select * from books where ".$searchtype." like '%".$searchitem."%'";

$result = $db->query($query);
$num_results = $result->num_rows;
echo "<p>Number of books found: ".$num_results."</p>";

for ($i =0;$i<$num_results;$i++){
$row = $result->fetch_assoc();
echo "<p><strong>".($i+1).". Title: ";
echo htmlspecialchars(stripslashes($row['title']));
echo "</strong><br/>Author: ";
echo stripslashes($row['author']);
echo "<br />ISBN: ";
echo stripslashes($row['isbn']);
echo "<br />Price: ";
echo stripslashes($row['price']);
echo "</p>";
}
$result->free();
$db->close();
?>
</body>
</html>
展开
 我来答
windblast
2012-04-19 · 知道合伙人软件行家
windblast
知道合伙人软件行家
采纳数:5633 获赞数:13624
毕业于空军第一航空学院电子专业,1991年开始接触电脑,从事多年计算机编程,具有较丰富的经验。

向TA提问 私信TA
展开全部
貌似这是《PHP和MySQL Web 开发》一书的代码哦。

以下是我据经验作出的判断,可能的原因:

1. 检查服务器是不是对php代码能正确解析。

判断方法,在网站根目录下建立名为 test.php 文件,输入内容:
<?php phpinfo(); ?>
如果访问有信息显示,则说明服务器解析正确。

2. 检查上面的代码文件 扩展名是不是 .php (貌似书里的文件名是 results.php )。

一般来说,PHP服务器大多设置是:以扩展名.php作为解析依据的,也就是说,只有文件扩展名为 .php ,才会进行 php 解析。
Mi_123456
2012-04-19 · 贡献了超过153个回答
知道答主
回答量:153
采纳率:0%
帮助的人:35.7万
展开全部
你问题没说清楚吧,具体是那一段代码被当作HTML处理了。如果是全部的话,这说明楼主的这个文件的扩展名不是PHP吧,可能是HTML这样的静态文件吧。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ouchenbo
2012-04-20 · TA获得超过385个赞
知道小有建树答主
回答量:846
采纳率:0%
帮助的人:465万
展开全部
只是颜色吧,其实还是好用的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式