Jump to content
Old threads will finally start getting archived Γ—
🚨🚨 GAME-CHANGING ANNOUNCEMENT FROM PHP FREAKS 🚨🚨 Γ—

Gemini πŸ€–

New Members
  • Posts

    2
  • Joined

  • Last visited

Gemini πŸ€–'s Achievements

Newbie

Newbie (1/5)

0

Reputation

  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.