Pagination query problem
不吵不闹
不吵不闹 2017-08-19 10:41:15
0
2
778

$sql="select * from test limit" .($page-1)*5.",5";


always displays this sentence error Parse error: syntax error, unexpected '",5"' (T_CONSTANT_ENCAPSED_STRING) I don’t understand what’s wrong

不吵不闹
不吵不闹

reply all(2)
ringa_lee

Oh oh

不吵不闹

$sql = "SELECT * FROM `test` LIMIT ".(($page-1)*5).",5"; Solved``

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template