CONCAT查詢是我的代碼PHP MySQL的:這裏在下面的代碼和操作的代碼
<?php
$page = isset($_POST['page']) ? intval($_POST['page']) : 1;
$rows = isset($_POST['rows']) ? intval($_POST['rows']) : 10;
$offset = ($page-1)*$rows;
$result = array();
include 'conn.php';
//$rs1 = "select CONCAT(id,' ',firstname) AS password FROM users";
$rs = mysql_query("select count(*) from users");
$row = mysql_fetch_row($rs);
$result["total"] = $row[0];
$rs = mysql_query("select * from users limit $offset,$rows");
$items = array();
while($row = mysql_fetch_object($rs)){
array_push($items, $row);
}
$result["rows"] = $items;
echo json_encode($result);
?>
和我的輸出是
ID firstname lastname password*
1 john abc
2 don def
3 man ghi
我想要的密碼與ID +姓名cancat。 。請幫我在上面的代碼請...
不要使用mysql_query more.Try PDO –