From acfae23029ee37195fcad29ad82067df42c608b1 Mon Sep 17 00:00:00 2001 From: Johannes Kantz <67144859+JohannesKantz@users.noreply.github.com> Date: Thu, 12 Jan 2023 14:37:11 +0100 Subject: [PATCH] fix: remove print --- BancaDati/BancaDati.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/BancaDati/BancaDati.php b/BancaDati/BancaDati.php index 9b7faf5..0874c6d 100644 --- a/BancaDati/BancaDati.php +++ b/BancaDati/BancaDati.php @@ -111,7 +111,6 @@ class BancaDati { $where .= $col . "=" . "'" . $v . "'"; } $sql = "SELECT * FROM ".$table." WHERE ".$where; - var_dump($sql); if(isset($order["by"])){ $sql .= " ORDER BY ".$order["by"]; } @@ -121,7 +120,6 @@ class BancaDati { try { return $this->pdo->query($sql); }catch (PDOException $e){ - var_dump($e); die; } }