progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-05-02 2a223624b3997bcfd782e4214d0db7c65b6707c3
correzione query in base a aggiunta colonna "dtm_richiesta"
1 files modified
2 ■■■ changed files
htdocs/contact.php 2 ●●● patch | view | raw | blame | history
htdocs/contact.php
@@ -16,7 +16,7 @@
    function insertDataOnTable(mysqli $mysql, string $email, string $number) { 
        $esitoInserimento = false;
        $query = "INSERT INTO Contact VALUES (NULL, '$email', '$number');";
        $query = "INSERT INTO Contact (email, telefono) VALUES ('$email', '$number');";
        try {
            $mysql->query($query);
            $esitoInserimento = true;