Estrai l ultimo id e lo incrementi di uno
$sql = "SELECT id FROM tabella ORDER BY id DESC LIMIT 1 ";
$result = mysql_query( $sql) or die (mysql_error());
while($riga=mysql_fetch_array($result))
{
echo $riga['id']++;
}
Estrai l ultimo id e lo incrementi di uno
$sql = "SELECT id FROM tabella ORDER BY id DESC LIMIT 1 ";
$result = mysql_query( $sql) or die (mysql_error());
while($riga=mysql_fetch_array($result))
{
echo $riga['id']++;
}