• User Attivo

    kick ban utente in chat

    salve vorrei modificare uno script in modo che caccia l'utente in chat e lo direzione sulla index ho preso quello già esistente e ho modificato url e mem posto lo script chiedo aiuto grazie ( il 2 è l'utente 1 admin )


    function displayChat(){
    id = <?php echo $id; ?>;
    $.ajax({
    url: 'member.php',
    type: 'POST',
    async: false,
    data:{
    id: id,
    mem: 2,
    },
    success: function(response){
    $('#chat_area').html(response);
    $("#chat_area").scrollTop($("#chat_area")[0].scrollHeight);
    }
    });
    }


    [PHP]include('session.php'); if(isset($_POST['mem'])){ $id=$_POST['id']; $memq=mysqli_query($conn,"select * from chat_member left join user on user.userid=chat_member.userid where chatroomid='$id'"); while($memrow=mysqli_fetch_array($memq)){ ?> <div class="well" style="height: 100px;"> <span><?php echo $memrow['uname']; ?></span> <button class="btn btn-warning ">Kick</button> </div><br>[/PHP]