hya im moving my site to mysqli and i have a error in inbox file can anyone advice how to solve this the error is below:
Warning: implode(): Invalid arguments passed in /home/jktempla/public_html/Softdatepro/completed/inbox.php on line 199
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in /home/jktempla/public_html/Softdatepro/completed/inbox.php on line 201
and the code for that section is
[php]// Fetch user random for display on bottom
$idtopuid = implode(’,’, $topuid);
$userquery = mysqli_query($conn,“select * from user where user_id != '”.$_SESSION[‘userid’]."’ and user_id NOT IN (".$idtopuid.") order by rand() limit 0,5");
while($fet_query=mysqli_fetch_array($userquery))
{
$show_gender = $fet_query[‘user_gender’];
$show_id = $fet_query[‘user_id’];
$fetch_img2 = mysqli_fetch_array(mysqli_query($conn,“select user_image from user_images where user_id = '”.$show_id."’ and main_image = ‘1’ "));
$show_img = $fetch_img2[‘user_image’];
?>
<?php } ?>[/php]
the underlined and bold are the lines indicated in the error message
and help would be much appreciated ty jan