PHP / jQuery: Ajax arama &

0 Cevap php

So im making a "delete" button to my commentsystem.. I want to make it smart, so it should run a ajax call to remove the comment.

Şimdi kendimi denedim, bu ve bu kadar aldık:

<?php
echo "<a href='#' onclick='javascript:DoCommentWallRemove()' title='ta bort inlägg'> <span class='removeWallComment'></span> </a>";
?>
<script type="text/javascript">
    function DoCommentWallRemove(){
      var wrapperId = '#profileWall';
        $.ajax({ 
           type: "POST",
           url: "misc/removeWallComment.php",
        data: {
        value: 'y',
        commentwallid : "<?php echo $displayWall['id']; ?>",
        BuID : "<?php echo $v['id']; ?>",
        uID : "<?php echo $showU['id']; ?>"
        },
           success: function(msg){
    alert(msg);
            }
         });
    }
</script>

Şimdi bir süre benim yorum şovları (), ben JS işlevi doğru bağlantı altında yer var, bu yüzden gerçek comment id kapmak gerekir, ama bunun yerine her yorum için aynı kimlik verir.

Ama normal bir php ne zaman <?php echo $displayWall['id']; ?> bunun gibi farklı açıklama kimlikleri javascript yapması gerektiğini gösterir.

0 Cevap