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 脱敏项目合作,ner需求合作
  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密
  • ¥15 关于#qt#的问题:我想实现qcustomplot完成坐标轴