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);
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?