dongzhao8233 2017-03-22 12:49
浏览 189
已采纳

警告:mysqli_error()只需要1个参数,给定[重复] 0

This question already has an answer here:

I have searched on here for this same question being asked and found many answers that did not fix my error at all and usually just created more :P Here is the full error

Warning: mysqli_error() expects exactly 1 parameter, 0 given in F:\Jacob's Project rehashegister.php on line 54.

and here is the entire PHP page that it inhabits:

 <!DOCTYPE html>
<html>

<head>

<title>Membership Confirmation</title>
    <script type='text/javascript' src='gen_validatorv31.js'></script>
</head>

<body>
<h1></h1>
<p>Thank for your membership support!</p>


<br>


<?php

//assign connection details to PHP variables
$servername="localhost";                                             
$username="root";                                                    
$password="";                                                        
$database="bryanbook"; 

//connect to the database server and select Bryanbook database
$link=mysqli_connect($servername,$username,$password,$database);
//check for successful connection
if (mysqli_connect_error())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }


//assign values submitted by HTML form to PHP variables
$email = $_POST['email'];                         
$firstname = $_POST['firstname'];                         
$surname = $_POST['surname'];                             
$addressline1 = $_POST['addressline1'];            
$password =   $_POST['password'];                     
$towncity = $_POST['towncity'];                            
$postcode = $_POST['postcode'];                            
$favouritecolour = $_POST['favouritecolour'];                         
$likes = $_POST['likes'];                          
$dislikes = $_POST['dislikes'];                           




//create query to add member details to database
$query = "INSERT INTO users (email,password,firstname,surname,`address 
line 1`,town/city,postcode,`fave colour`,likes,dislikes) VALUES ('$email','$password','$firstname','$surname','$addressline1','$towncity','$postcode','$favouritecolour','$likes','$dislikes')";
//execute SQL query to add details to the member table
$data = mysqli_query($link, $query)or die(mysqli_error());   <------- Line 54


//check that query has been successful
if($data)
  {
  //display message to notify user that details have been added
  echo "Your registration has been successful";
  }


//close server connection
mysqli_close($link);

//exit PHP
?>


<br>
<p><a href="Home Page.html">Click here to return to the Home Page</a></p>
</body>

</html>
</div>
  • 写回答

1条回答 默认 最新

  • dragonsun2005 2017-03-22 12:55
    关注

    change $data = mysqli_query($link, $query)or die(mysqli_error()); <------- Line 54

    to (simply pass the $link connection to the mysqli_error() function)

    $data = mysqli_query($link, $query)or die(mysqli_error($link)); <------- Line 54

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集