![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
06/11/2009, 09:31
|
![Avatar de JOSANCIN](http://static.forosdelweb.com/customavatars/avatar258910_3.gif) | | | Fecha de Ingreso: septiembre-2008 Ubicación: huesca
Mensajes: 298
Antigüedad: 16 años, 5 meses Puntos: 0 | |
Respuesta: no puedo leer la imagen al hacer update Hola,
Me autorespondo por si a alguien le puede servir:
el error esta en que escribi
$modificacion = "UPDATE fotos SET
imagen='.$foto_reconvertida.' where num_ident= '1'";
mysql_query($modificacion);
debiendo haber quitado los puntos delante y detras de $foto_reconvertida de esta forma:
$modificacion = "UPDATE fotos SET
imagen='$foto_reconvertida' where num_ident= '1'";
mysql_query($modificacion); |