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条)

报告相同问题?

悬赏问题

  • ¥15 基于FOC驱动器,如何实现卡丁车下坡无阻力的遛坡的效果
  • ¥15 IAR程序莫名变量多重定义
  • ¥15 (标签-UDP|关键词-client)
  • ¥15 关于库卡officelite无法与虚拟机通讯的问题
  • ¥100 已有python代码,要求做成可执行程序,程序设计内容不多
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助
  • ¥15 STM32控制MAX7219问题求解答