I have an image in a BLOB in a remote mysql table. The field is called img_BLOB and should be used instead of the thumbnail_url. How would I get it to appear in the table below?
<?php
Table::create(array(
"dataStore" => $this->dataStore("word"),
"showFooter" => true,
"columns" => array(
"description",
"thumbnail_url" => array(
"formatValue"=> "<img width='500px' height='400px' src='".base_url()."/@value' />"
),
),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover"
)
));
?>