--------------------------------------------------------------
qui riceve il comando
displayChat();
$(document).on('click', '#send_msg', function(){
id = <?php echo $id; ?>;
if($('#chat_msg').val() == ""){
alert('Devi scrivere un messaggio per inviare');
}else{
$msg = $('#chat_msg').val();
$.ajax({
type: "POST",
url: "send_message.php",
data: {
msg: $msg,
id: id,
},
success: function(){
$('#chat_msg').val("");
displayChat();
}
});
}
});
-----------------------------------------------
ce stava un file test.php non collegato e dentro
include('../conn.php');
$id=46;
$mem=array();
$um=mysqli_query($conn,"select * from `chat_member` where chatroomid='$id'");
while($umrow=mysqli_fetch_array($um)){
$mem[]=$umrow['userid'];
}
print_r($mem);
$users=implode($mem, "', '");
echo $users;
print_r($users);
$u=mysqli_query($conn,"select * from `user` where userid not in ('".$users."')");
while($urow=mysqli_fetch_array($u)){
?>
<li><?php echo $urow['uname']; ?></li>
<?php
}
?>
Ultima modifica di fcfclean : 21-12-2019 alle ore 16.49.31
ciao auguri e buon natale :) scusami per la risposta in ritardo le emo io le vedo come la foto che ho inviato ha anche un errore avrai notato.. la foto che mi hai fatto vedere a te si vedono da cosa dipende?
Ultima modifica di fcfclean : 25-12-2019 alle ore 12.11.10