这是我的hotel.php 我需要根据过滤器制作过滤系统。例如,选择价格我需要在给定的范围选项中显示项目。
<!DOCTYPE html>
<html>
<head>
PHP
</head>
<body>
<form action="hotelprocess.php" method="POST">
<p>
<select name="Photel">
<option>Select-Price-</option>
<option value="price">100-300</option>
<option value="price">301-500</option>
</select>
</p>
<p>
<input type="submit" name="hotel" />
</p>
</form>
</body>
</html>
&#13;
这是我的hotelprocess.php 在这个文件中我想让它根据过滤系统显示数据库中的项目。我在下面使用,以确保可以显示消息,但它失败了。它有错误说Parse错误:语法错误,意外&#39; $ prc&#39;第4行的C:\ xampp \ htdocs \ Test \ hotelprocess.php中的(T_VARIABLE)
<?php
include 'dbh.php'
//Get value pass from form in hotel.php file
$prc = $_POST["prc"];
$prc = mysql_real_escape_string($pass);
//DB
$query = "SELECT h_price, n_hotel FROM hotel";
$result=mysqli_query($conn, $query);
$rows = mysqli_fetch_array($result);
if($row['prc'] > 0)
{
echo "hello";
}
else{
echo "failed to display";
}
?>
&#13;
这是与数据库的连接
<?php
//connect with database
$conn=mysqli_connect("localhost", "root", "", "register");
if(!$conn){
die("connection failed:".mysqli_connect_error());
}
?>
&#13;
我希望你们明白我的要求并抱歉我的英语。