Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/03/2010, 17:33
Avatar de enlinea777
enlinea777
 
Fecha de Ingreso: mayo-2008
Ubicación: frente al pc
Mensajes: 1.830
Antigüedad: 16 años
Puntos: 127
Respuesta: no me devuelve las imagenes en la busqueda

facil cambia esto
Código PHP:
 <?php 
mysql_connect
("localhost","root","yoyoyo");
$result=mysql_db_query("path","select * from imagenes where nombre='".mysql_escape_string($_POST['caja1'])."' ");


//Mostramos los registros

while ($row=mysql_fetch_assoc($result))
{
echo 
'<img src="'.$row['ruta'].'">';
echo 
'</img>';
}
mysql_free_result($result);
?>
por esto

Código PHP:
<?php
$conec
=mysql_connect("localhost","root","yoyoyo");
$b=$_POST['caja1'];
$result=mysql_db_query("path","select * from imagenes where nombre LIKE '%{$b}%' ",$conec);
//Mostramos los registros
while ($row=mysql_fetch_assoc($result))
{
echo 
'<img src="'.$row['ruta'].'">';
echo 
'</img>';
}
mysql_free_result($result);
mysql_close($conec)
?>

Última edición por enlinea777; 07/03/2010 a las 21:47