From 453e914d0b4e248e64249a845ee8c3c219c2bc39 Mon Sep 17 00:00:00 2001 From: Sebastian Muchui K Date: Mon, 26 Aug 2024 16:35:39 +0300 Subject: [PATCH] Minor removals --- src/Schema/Schema.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Schema/Schema.php b/src/Schema/Schema.php index 6a3788c..b799329 100755 --- a/src/Schema/Schema.php +++ b/src/Schema/Schema.php @@ -63,9 +63,6 @@ public function __construct(PDO $connection) public static function Exists(string $table): bool { - echo $_SESSION['uname']; - echo $_SESSION['pwd']; - echo $_SESSION['host']; $sql = "SHOW TABLES LIKE '$table'"; $stmt = self::$connection->query($sql); $stmt->execute(null);