如何将jQuery变量转换为PHP变量?

时间:2019-05-22 06:25:58

标签: php jquery

我需要使用jquery将表单数据传递给模式php变量。

form.php

<span id="firstname">Derrick</span>

modal.js

$(document).ready(function(){
    $(document).on('click', '.edit', function(){
        var first=$('#firstname').text();   

        $('#edit').modal('show');
        $('#efirstname').val(first);        
    });
});

modal.php

<?PHP $firstname = ??? ?>
<input type="text" style="width:350px;" class="form-control" id="efirstname">

该变量已正确传递到输入文本字段,但我找不到在PHP中使用该变量的方法。

0 个答案:

没有答案