![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/05/2005, 17:32
|
![Avatar de baccxus](http://static.forosdelweb.com/customavatars/avatar103125_1.gif) | | | Fecha de Ingreso: mayo-2005 Ubicación: Panama city, Panama, Panama
Mensajes: 870
Antigüedad: 19 años, 8 meses Puntos: 17 | |
Deberias cambiarle unas comillas dobles por unas simples fijate si asi te sirve
<?PHP
$Link_ID = odbc_connect("prueba", "", "");
$Query_ID = odbc_exec($Link_ID, "SELECT foto FROM investigadores WHERE ID=90");
$row=odbc_fetch_array($Query_ID);
header("content-type: image/jpeg");
echo "<img src=".$row['foto'].">";
echo $row['foto'];
echo $row;
?> |