Zend/PHP: Problem uploading/downloading file to/from MySQL's BLOB field.
- by NAVEED
I am uploading file(any type) like this: (It is uploading content of file in blob field of mysql)
$organizationModel = new Model_Organization_Object( organizationId );
$myFile = file_get_contents( '../path/to/my/file/filename.ext' );
$organizationModel->setOrganizationProfile( $myFile );
$organizationModel->save();
Now I want to get that…