progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-05-03 a39c372f635a26eb10b243a0ba4addf6710b6c07
correzione commenti
1 files modified
19 ■■■■ changed files
htdocs/contact.php 19 ●●●● patch | view | raw | blame | history
htdocs/contact.php
@@ -13,13 +13,10 @@
    $email = $_POST['email'] ?? '';
    $msg = '';
    /*
     *
    /**
     *  Inserisce i dati trasmessi dal form ($email e $number) nella tabella
     *
     */
    function insertDataOnTable(mysqli $mysql, string $email, string $number) {
    function insertDataOnTable(mysqli $mysql, string $email, string $number): bool {
        $esitoInserimento = false;
        $query = "INSERT INTO Contact (email, telefono) VALUES ('$email', '$number');";
        try {
@@ -32,12 +29,8 @@
    }
    /*
     *
     *
    /**
     *  controlla se ci sono errori sulla digitazione dei dati messi nel form
     *
     *
     */
    function controlloErrori(string $email, string $number, array &$errorMsgs) {
@@ -58,12 +51,8 @@
        return $validazioneOk;
    }
    /*
     *
     *
    /**
     *  controlla se nelle 24 ore prima non sia stata messa nel campo email la stessa mail per evitarne lo spam
     *
     *
     */
    function controlloSpamEmail(mysqli $connection, string $email) {
        $spam = false;