i başarı nasıl işlev geri oluşturabilirim?

0 Cevap php
$(function() {
      $(".follow").click(function(){
        var element = $(this);
        var I = element.attr("id");
        var info = 'id=' + I;

        $.ajax({
            type: "POST",
            url: "listen.php",
            data: info,
            success: function(){}
            });

        $("#follow"+I).hide();  ///showing the remove button after the data has been entered
        $("#remove"+I).show();
        return false;

      });
});

php dosyası listen.php

<?php session_start();
include_once ('includes/connect.php');

$id = $_POST['id'];
$follower = $_SESSION['user_id'];

 $registerlistener = mysql_query("INSERT INTO relationships (leader, listener) VALUES('".$id."', '".$follower."')");
?>

ne yapmak istediğim i takip düğmesini tıklatın zaman, ben veri! (temelde arka planda kontrol kaldır düğmesine göstermeden önce, veritabanına enetered olup olmadığını kontrol etmek istiyorum olduğunu!

0 Cevap