Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/05/2005, 17:32
Avatar de baccxus
baccxus
 
Fecha de Ingreso: mayo-2005
Ubicación: Panama city, Panama, Panama
Mensajes: 870
Antigüedad: 19 años
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;
?>