benim jquery ajax isteği veritabanına erişen değil mi?

0 Cevap php
jQuery(function ($) {
    /* fetch elements and stop form event */
    $("form.follow-form").submit(function (e) {
        /* stop event */
        e.preventDefault();
        /* "on request" */
        $(this).find('i').addClass('active');
        /* send ajax request */
        $.post('recycle.php', {
            followID: $(this).find('input').val()
        }, function () {
            /* find and hide button, create element */
            $(e.currentTarget)
              .find('button').hide()
              .after('<span class="following"><span></span>Following!</span>');
        });
    });
});

html:

<form class="follow-form" method="post" action="recycle.php">
    <input name="id" value="$id" type="hidden">
        <input name="$tweet" value="$tweet" type="hidden">
    <button type="submit" value="Actions" class="btn follow" title="123456">
        <i></i><span>recyle</span>
    </button>
</form>

reycle.php:

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

$id = $_POST['id'];
$tweet =$_POST['tweet'];


  $registerlistener = mysql_query("INSERT INTO notes (user_id, user_note,recyle_id,dt) VALUES('".$_SESSION['user_id']."','".$tweet."','".$id."',NOW()");



?>

sorun veritabanına html formdan bilgileri ekler, hangi recycle.php dosyaya erişmeden değil ki! ama bütün jquery animasyon yapıyor! i dont görmek nedir problem!

0 Cevap