MySQL Prepared Statements for Bulk Data Inserts You may notice a small buildup between articles, and that’s intentional. No reason to overwhelm or dilute the topic. In this article, we’ll answer one additional question related to inserting data with prepared statements: do you need to keep binding variables for each set of data that you’re inserting? Let’s just spoil that response: you don’t. Setup the binding once, change the variables, and execute. It may look a little strange, but as long as you know the flow, it will work. https://blog.devgenius.io/php-p86-mysql-insert-with-prepared-statements-57f37daeb109 Recap <?php namespace Authors; require_once(“DB.php”); use Database\DB; class Author {