Código PHP:
<?php
require_once('conexion.php');
function getImagen($imgId){
$strSql = "SELECT imagen FROM tablaImagenes WHERE id= ".$imgId;
$consulta = mssql_query($strSql);
while($row = mssql_fetch_array($consulta)){
header("Content-type:image/jpg");
return $row['imagen'];
}
}
echo getImagen("1");
?>