in reply to Re^3: blob output
in thread blob output
i selected the photo from table
my $pic = $DBH->prepare("SELECT PHOTO FROM tble WHERE ID = ?"); $pic->execute(#ID); $pik = $pic->fetchrow;
this is my html div where i want to display the img
html <img src="$pik">
this is the output. the photo i got from table where is blob column
u can see the photo was selected successful from table and brings the photo name exactly. bt the problem it doesn;t display to browser
output <img src="02100.JPG" #this is the photo i got from db. bt cant display +>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: blob output
by marto (Cardinal) on Sep 11, 2018 at 08:43 UTC | |
by bigup401 (Pilgrim) on Sep 11, 2018 at 09:16 UTC | |
by AnomalousMonk (Archbishop) on Sep 11, 2018 at 15:36 UTC |