dora1989 2015-10-15 00:12
浏览 41
已采纳

如何使用jQuery调用php函数从MYSQL获取更新数据

So I have a number in the MYSQL table which is displayed on the screen using the function:

function getWinNumber($db) {

    $user = getProfileInfoFor($_SESSION['id'], $db); 

    $winNumber = $user->number;

    return $winNumber;
}

Then after some user actions that value changes in the DB and I want to update it in front-end when they close a foundation modal:

$(document).on('close.fndtn.reveal', '#ex6-4', function () {

        $('.number').html("<?php echo getWinNumber($db);?>");

    });

The problem is that even though the code works, and I can clearly see in the DB that the value has changed before I close the modal, the value being pulled is still the old one. Why is that?

If I put anything else in there like:

$(document).on('close.fndtn.reveal', '#ex6-4', function () {

        $('.number').html("test");

    });

it works. It updates when I close the modal.

  • 写回答

1条回答 默认 最新

  • dsdapobp26141 2015-10-15 00:33
    关注

    I ended up doing it with AJAX like this and it worked:

    $(document).on('close.fndtn.reveal', '#ex6-4', function () {
    
             $.ajax({ url: 'include/update.php',
                 data: {action: 'update'},
                 type: 'post',
                 success: function(output) {
    
                          $('.encrypted').html(output);
                      }
            });  
        });
    

    and for the PHP:

    if(isset($_POST['action']) && !empty($_POST['action'])) {
    
        $action = $_POST['action'];
        if ($action == 'update') {
    
            echo getWinNumber($db);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!