Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/04/2013, 16:26
alex1084
 
Fecha de Ingreso: abril-2008
Ubicación: El Salvador
Mensajes: 736
Antigüedad: 16 años, 9 meses
Puntos: 47
Respuesta: Resource id #3 EN UN COUNT DE TABLA?

Mira lee un poco para que comprendas el funcionamiento....


Código PHP:
Ver original
  1. <?php
  2.     $servicio1=mysql_query("SELECT count(imagen_id) cantidad FROM imagen where estado='1'");
  3.     $result = mysql_query($servicio1);
  4.     $total=mysql_fetch_array($result);
  5.    
  6.     //Si lo que queres hacer es sacar el ultimo id de imagen que has generado podes hacerlo asi
  7.     $servicio2=mysql_query("SELECT max(id_imagen) id FROM imagen where estado=1 order by imagen_id DESC Limit 1;");
  8.     $ultimoId=mysql_fetch_array($servicio2);
  9.     ?>
  10.     <td class="index_row_info">
  11.      Total: <?php echo $total["cantidad"]; ?></br>Ultimo Registro: <?php echo $ultimoId["id"]; ?>