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() . "
"); -} -?> - - - - - HTML - - - - - - - - - - - '; - echo ''; - echo ''; - echo ''; - echo ''; - } - ?> -
CognomeNomeNote
' . htmlspecialchars($row['cognome']) . '' . htmlspecialchars($row['nome']) . '' . htmlspecialchars($row['note']) . '
- - -