Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/02/2011, 17:27
Avatar de VbOkonly
VbOkonly
 
Fecha de Ingreso: julio-2009
Ubicación: San Justo, Buenos Aires, Argentina
Mensajes: 490
Antigüedad: 14 años, 10 meses
Puntos: 5
Problema con mysql_fetch_array

Código PHP:
<?php 
    
include ("conexion.php");
    
mysql_query("SET character_set_results = 'utf8', character_set_client = 'utf8', character_set_connection = 'utf8', character_set_database = 'utf8', character_set_server = 'utf8'");
    
$busquedamascotas mysql_query("SELECT * FROM fotos ORDER BY horafecha DESC LIMIT 20"$db);
      while(
$mascotas=mysql_fetch_array($busquedamascotas)){ ?>
<a href="<?php $mascotas['foto']; ?>" rel="lytebox" title="<?php $mascotas['title']; ?>"><img src="<?php $mascotas['thumb']; ?>" style="border: medium none;" alt="<?php $mascotas['title']; ?>"></a><?php ?>
Quiero mostrar esos links traidos de una bd pero no los muestra :S, ¿Cual es el problema?

Muchas gracias de antemano! :D