เราทำ Box Comment ติดตรงที่ เมื่อมีการกด Delete Comment เราทำให้มัน Fadeout เฉพาะที่เรากด Delete ไม่ได้อ่ะครับ
Code (PHP)
<?php
include('dbcon.php');
$userip = $_SERVER['REMOTE_ADDR'];
echo "delete from facebook_posts_comments where c_id ='".$_REQUEST['c_id']."' AND userip ='".$userip."'";
mysql_query("delete from facebook_posts_comments where c_id ='".$_REQUEST['c_id']."' AND userip ='".$userip."'");
?>
ไฟล์ delete_comment.php มันแค่ เป็นส่วนของ การ query อ่ะครับ
Date :
2014-02-07 09:53:55
By :
nut_ch31
จับภาพหน้าจอมาให้ดูด้วยซิครับ
Date :
2014-02-07 10:07:01
By :
sakuraei
ลองดูครับ
//deleteComment
$('a.c_delete').livequery("click", function(e){
if(confirm('Are you sure you want to delete this comment?')==false)
return false;
e.preventDefault();
var parent = $(this).parent("div.commentPanel");
var c_id = $(this).attr('id').replace('CID-','');
$.ajax({
type: 'get',
url: 'delete_comment.php?c_id='+ c_id,
data: '',
beforeSend: function(){
},
success: function(){
parent.fadeOut(200,function(){
parent.remove();
});
}
});
});
Date :
2014-02-07 11:05:31
By :
sakuraei
http://yepinol.com/facebook-wall-script-with-php-jquery/
ผมไปใช้ Script ของคนนี้แล้วครับ โอเคร ดีเลย
Date :
2014-02-13 15:36:50
By :
nut_ch31
Load balance : Server 04