आपको लगभग मिल ही गया है, आप PDO::PARAM_LOB
want चाहते हैं फ़ाइल पॉइंटर बनने के लिए जिसे आपने ऊपर बनाया है, न कि fp पढ़ने का परिणाम
if (isset($_FILES['image']) && $_FILES['image']['size'] > 0)
{
$tmpName = $_FILES['image']['tmp_name'];
$fp = fopen($tmpName, 'rb'); // read binary
}
try
{
$stmt = $conn->prepare("INSERT INTO images ( picture ) VALUES ( ? )");
$stmt->bindParam(1, $fp, PDO::PARAM_LOB);
$conn->errorInfo();
$stmt->execute();
}
catch(PDOException $e)
{
'Error : ' .$e->getMessage();
}