Bu jQuery yazı ile yanlış bir şey var mı?

0 Cevap php

im file.php için id özelliği geçmek için çalışıyor, ama veritabanına eklemek çalıştığınızda onun, beni her zaman 0 vererek, javascript ve html sağlanır!

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

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

        $("#follow"+I).hide();
        $("#remove"+I).show();
        return false;

      });
});

html dosyası:

<div id="follow1"><a href="#" class="follow" id="1"><span class="follow_b"> Follow </span></a></div>

P.S. Bu veritabanında değer eklemek deos

file.php:

<?php

$id =$_POST['id'];

msql_insert.........
?>

0 Cevap