0

我有这个分页问题。

我在这里有这个 php 代码:

$page = $_POST['page'];
$cur_page = $page;
$page -= 1;
$per_page = 15;
$previous_btn = true;
$next_btn = true;
$first_btn = true;
$last_btn = true;
$start = $page * $per_page;

我在这里有这个查询:

$query_pag_data = 'SELECT 
    matching.date,
    matching.points,
    matching.time,
    matching.location,
    matching.epos_id,
    rbpos_epos.epos_id,
    rbpos_epos.location
FROM
    matching
LEFT JOIN
    rbpos_epos ON matching.epos_id = rbpos_epos.epos_id
WHERE
    matching.user_id = ".$id_user." LIMIT $start, $per_page';

我得到$start变量未定义。我想这与查询有关,因为如果我提出另一个更简单的查询,它就可以工作。
请帮我。

谢谢。

4

1 回答 1

0

在查询中使用双引号,因为$startand$per_page是字符串而不是变量

$query_pag_data = "SELECT 
matching.date,
matching.points,
matching.time,
matching.location,
matching.epos_id,
rbpos_epos.epos_id,
rbpos_epos.location
FROM
matching
LEFT JOIN
rbpos_epos ON matching.epos_id = rbpos_epos.epos_id
WHERE
matching.user_id = $id_user LIMIT $start, $per_page";
于 2013-06-06T09:29:00.467 回答