Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created March 16, 2019 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/35755411544b8929f2124c3031fee083 to your computer and use it in GitHub Desktop.
Save codingwithsara/35755411544b8929f2124c3031fee083 to your computer and use it in GitHub Desktop.
How to Save Image File with PHP & MySQL - #4 Insert an image
<?php
// Connect to the database.
function connectDB() {
$param = 'mysql:dbname=my_image;host=localhost';
try {
// new PDO($param, USER, PASSWORD)
$pdo = new PDO($param, 'root', 'root');
return $pdo;
} catch (PDOException $e) {
echo $e->getMessage();
exit();
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment