progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-24 25190e31c27559d96d5e9756648c129e2cf47f83
controllo sull'input form (controlla se è un numero di telefono)
1 files modified
13 ■■■■ changed files
htdocs/contact.php 13 ●●●● patch | view | raw | blame | history
htdocs/contact.php
@@ -5,8 +5,17 @@
    $smarty->setTemplateDir('../ihtml');
    $smarty->setCompileDir('../compile');
    $string = $_GET['prova'];
    if(!empty($_GET['prova'])) {
        if(is_numeric($_GET['prova']) && strlen($_GET['prova']) == 10) {
            $string = $_GET['prova'];
        }else {
            $string = 'Numero di telefono non corretto';
        }
    }else {
        $string = '';
    }
    $smarty->assign('provastring', $string);
    $smarty->display('contact.tpl');