Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/04/2009, 16:51
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 9 meses
Puntos: 2
Respuesta: Consulta...Contador de Visitas a Links

Disculpa GatorV,
esto implemente para visualizar el mas linkeado en una de mis paginas:
Código php:
Ver original
  1. <?php
  2. $qry_2=mysql_query("SELECT ID_CAT FROM CATALOGO WHERE CONT_CAT>0 AND EST_CAT='1' AND CAT_CAT='N' ORDER BY CONT_CAT DESC");
  3. ?>
  4. <table>    
  5. <tr>
  6.   <?php
  7.   if($row_2=mysql_fetch_array($qry_2)){
  8.   ?>
  9.   <td>
  10.     <table>
  11.     <tr>
  12.       <td><a href="index.php?p=11"><img src="include/verThumbnail.php?cod=<?php echo $row_2['ID_CAT']; ?>" border="0"></a></td>
  13.     </tr>
  14.     </table>
  15.   <?php
  16.   }
  17.   ?>
  18.   </td>
Por favor si me das una manito, te agradesco.