php pdo image upload code example
Example: php pdo image upload
prepare('INSERT INTO tbl_file(name,image) VALUES(:fname,:fimage)'); //sql insert query
$insert_stmt->bindParam(':fname',$name);
$insert_stmt->bindParam(':fimage',$image_file); //bind all parameter
if($insert_stmt->execute())
{
$insertMsg="File Upload Successfully........"; //execute query success message
header("refresh:3;index.php"); //refresh 3 second and redirect to index.php page
}
}
}
catch(PDOException $e)
{
echo $e->getMessage();
}
}
?>