提交后,PHP无法回应完整响应

时间:2015-09-02 14:03:25

标签: php jquery ajax

提交我的表单后,php将数据存储在sql中。但无法在Jquery响应中发送完整数据回显。

在这里查看我的代码我在下面提到哪些数据在提交后不回显,但是在页面刷新之后它很好。

echo'
<table border="1">
    <tr>
        <td>'.$company.' at '.$city.'<br>';

// below this 2 line not show at update
if($running == '1' && $ayear != '0000'){ echo'Since '.$ayear.'';}
if($ayear != '0000' && $byear != '0000' && $running == '0'){ echo 'Year: '.$ayear.' to '.$byear.'';}

echo '  </td>
    </tr>
</table>';

ajax提交:

$.ajax({
        type: "POST", url: "../about", cache: false,
        data: "action=work&aaa="+ aaw + "&bbb="+ bbw + "&ccc="+ ccw + "&ddd="+ ddw + "&eee="+ eew + "&fff="+ ffw + "&ggg="+ ggw + "&mmm="+ mmw,
        success: function(response){
            if (response != 'error') {
            $('#oldwork'+ mmw).hide();
            $('#editwork'+ mmw).fadeIn().html(response);
            } else {

            }
        }
    });

0 个答案:

没有答案