While trying to retrieve blob values stored in database by using this way,I have problem.Please help me.
Blob value is stored in database in this way.
$criteria = [
'lotItemNumber' => '',
'artistName' =>$_POST['artistName'],
'classification' =>$_POST['classification'],
'producedYear' =>$_POST['producedYear'],
'auctionDate' =>$_POST['auctionDate'],
'textualDescription' =>$_POST['textualDescription'],
'estimatedPrice' =>$_POST['estimatedPrice'],
'image' =>'$temp'
];
$stmt = $stmt->insert($criteria);
And tried to retrieve in this way:
echo'<imgsrc="data:image/jpeg;base64,'.base64_encode($row['image']).'width="250" height="250">';