Does SELECT COUNT(*) work with MySQLi prepared statements?
- by wordman
I'm working on a test page and am using MySQLi prepared statements in my queries after reading they make my code safe from SQL injection. I have been successful with prepared statements so far with retrieving data from my DB, that all works great.
What I want to do now is count the number of galleries within a project using SELECT COUNT(*). That's…