ciao, la funzione is_int() che vedete mi dice che il numero non è intero anche se scrivo 11 sulla quantità.
perchè?
grazie
codice:$quantita = str_replace(",", ".", $_POST['txt_quantita']); if ($quantita == "") { $errori[] = "La quantità non può essere vuota.\n"; } else { if (!is_numeric($quantita)) { $errori[] = "La quantità deve essere un numero.\n"; } else { if (!is_int($quantita)) { $errori[] = "La quantità deve essere un numero intero.\n"; } } }