progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-29 09c7af69ad365ead230f9ca5c857d7d27f106e6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
    require '../vendor/autoload.php';
    use Smarty\Smarty;
    $smarty = new Smarty();
 
    $smarty->setTemplateDir('../ihtml');
    $smarty->setCompileDir('../compile');
 
    $error = [];
    $number = $_GET['number'] ?? '';
    $email = $_GET['email'] ?? '';
 
 
 
    function insertDataOnTable(mysqli $mysql, string $email, string $number) {
        $query = "INSERT INTO Contact VALUES ('$email', '$number');";
        try {
            $mysql->query($query);
        } catch (Exception $e) {
            echo $e->getMessage();
        }
    }
 
    if(!is_numeric($number) || strlen($number) != 10) {
        $error['number'] = 'Numero di telefono non corretto';
    }else {
        $error['number'] = '';
    }
 
    if(!filter_var($email, FILTER_VALIDATE_EMAIL)) {
        $error['email'] = 'Email non valida';
    } else {
        $error['email'] = '';
    }
    
 
 
    try {
        $conn = new mysqli('127.0.0.1', 'root', '', 'contact_db');
    } catch (Exception $e) {
        die($e->getMessage());
    }
 
    insertDataOnTable($conn, $email, $number);
 
    
    
 
    $smarty->assign('cellNumber', $number);
    $smarty->assign('email', $email);
 
    $smarty->assign('error', $error);
 
    $smarty->display('contact.tpl');
?>