dongtan6336 2017-08-14 20:08
浏览 64
已采纳

在Ajax调用之后更新PHP变量

I am making an Ajax call to a PHP file that checks a condition and runs a query a MySQL query if the conditions are met.

The query updates a table in my DB with a new value. This all works great. I would like to know how to show the new value in the current page without having to manually reload. Code is Below.

The variable I am updating is $trialExpiry

HTML/PHP

<h4 class="sbText mt-10">Trial End Date: <?php echo date("d/m/Y",
                        strtotime($trialExpiry)); ?></h4>

<form id='promocode'>
     <input type='text' class='sbInput' placeholder='Promo Code' name='promocode'>
     <input type='hidden' name='userid' value='<?php echo $userID; ?>'>
     <button class='btn sbSubmit'>Submit</button>
</form>

JQUERY

   <script>
         $(function () {
             $('#promocode').on('submit', function (e) {
                  e.preventDefault();
                  $.ajax({
                     type: 'post',
                     url: '../model/process-promo-code.php',
                     data: $('#promocode').serialize(),
                     success: function () {
                          $("button.btn").css({
                             'transition-duration': '1000ms',
                              'opacity': '0.5'
                           });
                     }
                 });
            });
      });
   </script>

Thanks so much.

  • 写回答

3条回答 默认 最新

  • doubing3662 2017-08-14 20:26
    关注

    You don't want to do the live updating with PHP variables, since those are only refreshed when the page is reloaded. Instead, you want to update an element's value via AJAX. As far as I can tell, you want to update the expiration date. If you don't, just let me know and I can change the code to whatever it's supposed to do.

    Here's the "control flow" of this functionality:

    1. (Entry point) User clicks 'Submit', jQuery event handler fires
    2. jQuery AJAX function is called and sends the promo code to a PHP script
    3. In the PHP script, the database is updated with the promo code.
    4. The PHP script returns the new expiry date (I'll assume that it's in the d/m/Y format you wanted)
    5. The callback in the jQuery AJAX function receives the data from the script.
    6. The callback's function body updates the "Expiry" element on the page with the value from the PHP call.

    Here's how to put that into HTML / JavaScript:

    <h4 class="sbText mt-10" id="expiry_label">
        Trial End Date: <?php echo date("d/m/Y",
                        strtotime($trialExpiry)); // The initial value can be displayed as normal. ?>
    </h4>
    
    <form id='promocode'>
         <input type='text' class='sbInput' placeholder='Promo Code' name='promocode'>
         <input type='hidden' name='userid' value='<?php echo $userID; ?>'>
         <button class='btn sbSubmit'>Submit</button>
    </form>
    
     <script>
         $(function () {
             $('#promocode').on('submit', function (e) {
                  e.preventDefault();
                  $.ajax({
                     type: 'post',
                     url: '../model/process-promo-code.php',
                     data: $('#promocode').serialize(),
                     success: function (result) {
                          $("button.btn").css({
                             'transition-duration': '1000ms',
                              'opacity': '0.5'
                           });
                           document.getElementById("expiry_label").innerHTML = "Trial End Date: " + result;
                     }
                 });
            });
      });
    </script>
    

    As you can see, I only added an "id" attribute to the element, a parameter to the "success" property of the AJAX call, and a line of code to update the element.

    Hope I helped!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?