Skip to content

Instantly share code, notes, and snippets.

@Jul10l1r4
Created December 23, 2017 21:19
Show Gist options
  • Save Jul10l1r4/e48fd2eb469e7e5485593714c412e20a to your computer and use it in GitHub Desktop.
Save Jul10l1r4/e48fd2eb469e7e5485593714c412e20a to your computer and use it in GitHub Desktop.
Pesquisa com pdo created by Jul10l1r4 - https://repl.it/@Jul10l1r4/Pesquisa-com-pdo
<?php
$query = $connDB->prepare('SELECT * FROM topic WHERE topic_name LIKE :keywords');
$query->bindValue(':keywords', '%' . $searchQ . '%');
?>
@Jul10l1r4
Copy link
Author

Pesquisa com pdo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment