简体   繁体   中英

How to store max id from mysql query into a php variable?

This isn't working for me:

$query = mysql_query(" SELECT max(id) FROM chat_records ");
while ($row = mysql_fetch_assoc($query)) {
    echo $row['id'];
}

How can I get it to work?

将查询更改为此:

SELECT max(id) AS id FROM chat_records

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM