自增函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自增函数相关的知识,希望对你有一定的参考价值。
function mysql_autoid($id,$table){ $query = 'SELECT MAX('.$id.') AS last_id FROM '.$table; $result = mysql_query($query); $result = mysql_fetch_array($result); return $result[last_id]+1; } // usage mysql_autoid('nID','news'); // for use with fields that don't have auto_increment enabled // otherwise just use $last_id = mysql_insert_id(); following a successful INSERT
以上是关于自增函数的主要内容,如果未能解决你的问题,请参考以下文章