mysqli_error($ conn)预计只有1个参数,给定0

时间:2017-12-03 05:38:03

标签: php mysqli

我正在使用mysqli,我在convo.php上发布了post请求,以获取当前用户与用户触发的人之间的对话。这是我的文件test.php上的post请求代码

$("li").click(function () 
{
var chatname=$(this).attr("data-value");

var chatid=$('#usevalue').val();
//alert( chatname +"\n"+chatid);

$.post("convo.php",
        {
         chatname: chatname,
         chatid: chatid
        },
        function(data,status)
        {
        alert("Data: " + data + "\nStatus: " + status);
        });
setInterval( function(){ $('#loading').load('convo.php'); }, 1000 );

$("#chat").show();
 var txt1 = "<span class='glyphicon glyphicon-user'>"+"<h4 class='text-capitalize' style='font-family:Croissant One;margin-top: -17px;margin-left: 20px;'>"+chatname+"</h4></span>"; 
 $("#chat").before(txt1);
    });

在convo.php上我试过

include('connection.php');
ini_set('display_errors', 1);
if($_POST)
{
    $chatname=$_POST['chatname'];
    $chatid=$_POST['chatid'];
    echo $chatname,$chatid;
}
else 
{
die('Error: ' . mysqli_error($conn));
}

如果我删除$ conn则会出错 (!)警告:mysqli_error()预计正好1个参数,0在第12行给出D:\ wamp64 \ www \ test \ convo.php如果我再次放入$ conn它只显示错误:并且错误后没有显示。我无法在错误的地方配置它。请帮助我。谢谢你们,我们将非常感谢每一项努力

0 个答案:

没有答案