每次运行此php时,我都会不断收到相同的3个错误。我不知道我在做什么错,有人可以帮忙吗?
错误如下:
[2014年5月5日19:20:50美国/芝加哥] PHP警告:mysqli_query()至少需要2个参数,第10行的/home/sagginev/public_html/Nutrifitness/search.php中提供了1个参数
[2014年5月5日19:20:50美国/芝加哥] PHP警告:mysqli_num_rows()期望参数1为mysqli_result,在第11行的/home/sagginev/public_html/Nutrifitness/search.php中给出的null
[2014年5月5日19:20:50美国/芝加哥] PHP警告:mysqli_num_rows()期望参数1为mysqli_result,在第16行的/home/sagginev/public_html/Nutrifitness/search.php中给出的null
这是我的代码
enter code here
<?php $con=mysqli_connect('localhost','sagginev_rob','122989','sagginev_Nutrifitness'); if (mysqli_connect_errno()) // Check connection { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } if(!isset($_POST['search'])) { header("Location:home.php"); } $search_sql="Select * FROM Questions WHERE username LIKE '%".$_POST['search']."%' OR feedback LIKE '%".$_POST['search']."%'"; $search_query=mysqli_query($search_sql); if(mysqli_num_rows($search_query)!=0) { $search_rs=mysqli_fetch_assoc($search_query); } ?> <H2> Search Results</H2> <?php if(mysqli_num_rows($search_query)!=0) { do { ?> <p><?php echo $search_rs['name']; ?> </p> <?php } while ($search_rs=mysqli_fetch_assoc($search_query)); } else { echo "No results found"; } ?> <form> <br> <input type="button" value="Go Back Home" onClick="parent.location='http://sagginevo.com/Nutrifitness/home.php'"> </form>
错误消息很清楚。mysqli_query()需要 两个 参数。您只提供一个。当您看到这样的错误消息时,您 要做 的 第一件事就是阅读 手册 。如果这样做,您将看到必须提供MySQLi链接作为第一个参数:
mysqli_query()
$search_query=mysqli_query($con, $search_sql);