U kunt dat niet doen door de tabelgegevens op te halen. U moet de tabelstatus ophalen om het automatische ophogingsnummer te krijgen met behulp van php. En dat, je kunt zoiets als dit doen:
$q = mysql_query("SHOW TABLE STATUS LIKE 'test'");
$row = mysql_fetch_assoc($q);
$next_increment = $row['Auto_increment'];
echo "next increment number: [$next_increment]";
Ik hoop dat dit helpt :)
[Bron ]