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<?php
$servicio1=mysql_query("SELECT count(imagen_id) FROM imagen where estado='1'"); $servicio2=mysql_query("SELECT * FROM imagen where estado=1 order by imagen_id DESC Limit 1;"); ?>
<td class="index_row_info">
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