Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/04/2013, 16:14
Avatar de skardo
skardo
 
Fecha de Ingreso: febrero-2013
Ubicación: Lima
Mensajes: 68
Antigüedad: 11 años, 9 meses
Puntos: 1
Pregunta Resource id #3 EN UN COUNT DE TABLA?

PORQUE ME APARECE EL Resource id #3 CUANDO TRAIGO UN VALOR DE UNA CONSULTA...... NO ES UN CAMPO DE LA TABLA SINO UN COUNT DE FILAS DE LA TABLA, COMO DEBO IMPRIMIRLA?

Código PHP:
Ver original
  1. <?php
  2.     $servicio1=mysql_query("SELECT count(imagen_id) FROM imagen where estado='1'");
  3.     $result = mysql_query($servicio1);
  4.     $servicio2=mysql_query("SELECT * FROM imagen where estado=1 order by imagen_id DESC Limit 1;");
  5.     ?>
  6.     <td class="index_row_info">
  7.      Total: <?php echo $result; ?></br>Ultimo Registro: <?php echo $servicio2; ?>

ME SALE ESTO:
Total: Resource id #2
Ultimo Registro: Resource id #3

CUANDO QUIERO QUE ME SALGA ESTO
Total: 28
Ultimo Registro: 34

AYUDENME