Jump to content

Sybase select img from PHP sybase_query


Recommended Posts

I have a problem with visualize a image in web from Sybase.

$select  = "SELECT gImg FROM TIMG WHERE id=$id";

$rs = sybase_query($select  , $link_connection);

$row = sybase_fetch_assoc($rs);

$img = $row['gImg'];

header('Content-type: image/jpeg');

echo $img

- The format of image in database is wmf.

I don´t see the image in the web browser, I need some codification or function?

Thank´s.

PHP Version 5.3.5

 

 

Link to comment
Share on other sites

6 hours ago, Barand said:

How are you attempting to display the image in the browser?

I resolve this using a $img = hex2bin($row['gImg']); and display the image in browser: 

      header('Content-type: image/jpeg');            
      print_r($img);

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.