Skip to content

Instantly share code, notes, and snippets.

@adalenv
Forked from bradtraversy/pdocrash.php
Created February 28, 2018 15:48
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 adalenv/8d4acde2a85f2024e1148116c37cd50e to your computer and use it in GitHub Desktop.
Save adalenv/8d4acde2a85f2024e1148116c37cd50e to your computer and use it in GitHub Desktop.
PDO & Prepared Statements Snippets
<?php
$host = 'localhost';
$user = 'root';
$password = '123456';
$dbname = 'pdoposts';
// Set DSN
$dsn = 'mysql:host='. $host .';dbname='. $dbname;
// Create a PDO instance
$pdo = new PDO($dsn, $user, $password);
$pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
$pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
# PRDO QUERY
// $stmt = $pdo->query('SELECT * FROM posts');
// while($row = $stmt->fetch(PDO::FETCH_ASSOC)){
// echo $row['title'] . '<br>';
// }
// while($row = $stmt->fetch()){
// echo $row->title . '<br>';
// }
# PREPARED STATEMENTS (prepare & execute)
// UNSAFE
//$sql = "SELECT * FROM posts WHERE author = '$author'";
// FETCH MULTIPLE POSTS
// User Input
$author = 'Brad';
$is_published = true;
$id = 1;
$limit = 1;
// Positional Params
$sql = 'SELECT * FROM posts WHERE author = ? && is_published = ? LIMIT ?';
$stmt = $pdo->prepare($sql);
$stmt->execute([$author, $is_published, $limit]);
$posts = $stmt->fetchAll();
// Named Params
// $sql = 'SELECT * FROM posts WHERE author = :author && is_published = :is_published';
// $stmt = $pdo->prepare($sql);
// $stmt->execute(['author' => $author, 'is_published' => $is_published]);
// $posts = $stmt->fetchAll();
// //var_dump($posts);
foreach($posts as $post){
echo $post->title . '<br>';
}
// FETCH SINGLE POST
// $sql = 'SELECT * FROM posts WHERE id = :id';
// $stmt = $pdo->prepare($sql);
// $stmt->execute(['id' => $id]);
// $post = $stmt->fetch();
// echo $post->body;
// GET ROW COUNT
// $stmt = $pdo->prepare('SELECT * FROM POSTS WHERE author = ?');
// $stmt->execute([$author]);
// $postCount = $stmt->rowCount();
// echo $postCount;
// INSERT DATA
// $title = 'Post Five';
// $body = 'This is post five';
// $author = 'Kevin';
// $sql = 'INSERT INTO posts(title, body, author) VALUES(:title, :body, :author)';
// $stmt = $pdo->prepare($sql);
// $stmt->execute(['title' => $title, 'body' => $body, 'author' => $author]);
// echo 'Post Added';
// UPDATE DATA
// $id = 1;
// $body = 'This is the updated post';
// $sql = 'UPDATE posts SET body = :body WHERE id = :id';
// $stmt = $pdo->prepare($sql);
// $stmt->execute(['body' => $body, 'id' => $id]);
// echo 'Post Updated';
// DELETE DATA
// $id = 3;
// $sql = 'DELETE FROM posts WHERE id = :id';
// $stmt = $pdo->prepare($sql);
// $stmt->execute(['id' => $id]);
// echo 'Post Deleted';
// SEARCH DATA
// $search = "%f%";
// $sql = 'SELECT * FROM posts WHERE title LIKE ?';
// $stmt = $pdo->prepare($sql);
// $stmt->execute([$search]);
// $posts = $stmt->fetchAll();
// foreach($posts as $post){
// echo $post->title . '<br>';
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment