progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-24 24112e1d997cf519f1679e0b0e995a9663f18961
implementazione connessione al database mysql (da risolvere problema exception mysql
1 files modified
10 ■■■■■ changed files
htdocs/contact.php 10 ●●●●● patch | view | raw | blame | history
htdocs/contact.php
@@ -10,8 +10,14 @@
    $number = $_GET['number'] ?? '';
    $email = $_GET['email'] ?? '';
    function DB_connect() {
        $conn = new mysqli('127.0.0.1', 'root', '');
        if(!$conn) {
            die('Connessione fallita:' . mysqli_connect_error());
        }
    }
    if(!is_numeric($number) || strlen($number) != 10) {
        $error['number'] = 'Numero di telefono non corretto';
    }else {
@@ -24,6 +30,8 @@
        $error['email'] = '';
    }
    DB_connect();
    $smarty->assign('cellNumber', $number);
    $smarty->assign('email', $email);