this is my code
$query="call call_history('','$real_sdate','$real_edate','$level','$userid',@_count,'0','10')";
//Listing the result
$rs = mysqli_query($mysqli,$query);
$rs = mysqli_query($mysqli,"SELECT @_count");
while($row = mysqli_fetch_assoc($rs))
{
print_r $row;
}
always i get blank result or error mysqli_fetch_assoc() expects parameter 1 to be mysqli_result
i want to do it with procedural mysqli.. not with oop mysqli..!!
Can anybody help.?