使用mysql結果添加時,我無法獲得總數。 在php中簡單添加
<?php
//execute the SQL query and return records
$result = mysql_query("SELECT * FROM table ORDER BY ID DESC LIMIT 1 ");
while($row = mysql_fetch_assoc($result)){
echo "{{$row['id']}+1}";
}
?>
在這裏我得到的結果是 「27 + 1」。
但我想要「28」。請指出我出錯的地方。
注意:'mysql_ *'函數已被棄用,它們將在未來的版本中從PHP中刪除,您的代碼將停止工作。您不應使用它們編寫新代碼,而應使用['mysqli_ *'或PDO](http://php.net/manual/en/mysqlinfo.api.choosing.php)。 –