PHP-Login icon indicating copy to clipboard operation
PHP-Login copied to clipboard

Direct PDO queries

Open ketna11 opened this issue 5 years ago • 0 comments

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();

ketna11 avatar Jun 18 '19 21:06 ketna11