Nie możesz tego zrobić, pobierając dane z tabeli. Musisz pobrać status tabeli, aby uzyskać numer automatycznego przyrostu za pomocą php. Możesz zrobić coś takiego:
$q = mysql_query("SHOW TABLE STATUS LIKE 'test'");
$row = mysql_fetch_assoc($q);
$next_increment = $row['Auto_increment'];
echo "next increment number: [$next_increment]";
Mam nadzieję, że to pomoże :)
[Źródło ]