0

我有一个查询

$result = $conn->query("select * from cabs where po = '$po' and Anew > $filter ORDER BY title limit $cnt,1")

工作正常并基于 $cnt 填充文件,该文件基于单击下一个或上一个按钮以转到记录而填充。was 不起作用的是 $filter,无论设置什么过滤器,它都会返回所有记录。有任何解决这个问题的方法吗。

var po =  $('#po').val();
            $.ajax ({
                type: "POST",
                url: "poInfo2.php",
                //async:false,
                dataType: "json",
                data: ({po:po , filter:$('#filter').val(), cnt:cnt, end:$('#end').html() }),
                success: function(data){
                    $("#end").html(data.pages);
                    $("#start").html(cnt+1);
                    var isbn = data.isbn;
                    
                     $("#cnt").val(data.cnt);
                     
                     pages of code that fills in a table
                     
                     
                     
                     
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script>

所以我想要做的是从一开始就删除记录(因此,如果它们是 4 条记录并在下面重新过滤,而不是显示总数为 16,那么它将显示 12 并且能够滚动浏览 - 无法从表中移动数据,因为它可由前端用户编辑。

4

1 回答 1

0

您需要为过滤器变量使用引号。

select * from cabs where po ="$po" and test  >  "$t" ORDER BY title limit $cnt,1

第二件事是单引号内的变量不能作为动态执行,它只是 php 的文本。

你必须像这样使用它"select * from abc where name = '".$name."'

于 2017-08-25T02:15:20.283 回答