Jump to content

abelhermar

New Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by abelhermar

  1. I resolve this using a $img = hex2bin($row['gImg']); and display the image in browser: header('Content-type: image/jpeg'); print_r($img);
  2. 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
×
×
  • 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.