I'm declaring a simple database class that includes an array of prepared statement, but for the life of me, I can't find the syntax error here.
class Database {
private static $users_table = "users";
private static $statements = array("username_available" => "SELECT COUNT(*) FROM " . self::$users_table . " WHERE Username='?'");
}
Any help here?