Nein.
PHP-Code:
$fh = fopen($_FILES['foo']['tmp_name'], 'rb');
$file = null;
while (!feof($fh)){
$file .= fread($fh, 256);
}
fclose($fh);
// eventuell $file = addslashes($file);
mysql_query('INSERT INTO tbl (BLOBfield) VALUES ("'.$file.'")');
Keine Garantie, da ich sowas nicht mache...
HTH
~