function generate_Thumbnail($file) {
$file = 'dirname/'$file;
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($file);
$modwidth = 120;
$modheight = 90;
$tn= imagecreatetruecolor($modwidth, $modheight);
$extension = strtolower(substr($file, strrpos($file, ".") + 1));
switch ($extension)
{
case 'jpg':
$source = imagecreatefromjpeg($file);
break;
case 'jpeg':
$source = imagecreatefromjpeg($file);
break;
case 'png':
$source = imagecreatefrompng($file);
break;
case 'gif':
$source = imagecreatefromgif($file);
break;
default:
die("Image is of unsupported type.");
}
#$source = imagecreatefromjpeg($file);
imagecopyresized($tn, $source, 0, 0, 0, 0, $modwidth, $modheight, $width, $height);
imagejpeg($tn);
}
You can use that to generate the thumbnail to insert it into that database, you will need to write the file to a tmp file somewhere then use file_get_contents/fopen to read the file into a variable then insert it into the database