diff --git a/pdo/index.php b/pdo/index.php
deleted file mode 100644
index 02afd54..0000000
--- a/pdo/index.php
+++ /dev/null
@@ -1,80 +0,0 @@
-";
-
- $prepare = $connection->prepare("SELECT cognome, nome, note FROM pazienti");
- $prepare->execute();
- if ($prepare->rowCount() > 0) {
- $datiPazienti = $prepare->fetchAll();
- }
- $connection = null;
-
-} catch (PDOException $e) {
- die ("Error!: " . $e->getMessage() . "
");
-}
-?>
-
-
-
-
Cognome | -Nome | -Note | -' . htmlspecialchars($row['cognome']) . ' | '; - echo '' . htmlspecialchars($row['nome']) . ' | '; - echo '' . htmlspecialchars($row['note']) . ' | '; - echo ''; - } - ?> -
---|