therecluse26 / PHP-Login

A login system built with PHP, MySQL, jQuery and Bootstrap
MIT License
839 stars 444 forks source link

Direct PDO queries #235

Open ketna11 opened 5 years ago

ketna11 commented 5 years ago

How to connect with database directly e.g. from page_2.php? Following code unfortunately does not work: $sql = "SELECT..."; $stmt = $this->conn->prepare($sql); $stmt->execute(); or $db = new DbConn; $sql = "SELECT..."; $stmt = $db->conn->prepare($sql); $stmt->execute();