Tema: proximo id
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/02/2007, 10:16
Avatar de Nefertiter
Nefertiter
 
Fecha de Ingreso: enero-2003
Ubicación: Rosario
Mensajes: 1.316
Antigüedad: 21 años, 4 meses
Puntos: 9
Re: proximo id

Código PHP:
$sql "SELECT MAX(id)+1 as Proximo FROM tabla ";
$q mysql_query($sql);
$row mysql_fetch_assoc($q);
$proximo $row['Proximo'];