<?php
if (isset($_POST['giorno']))
{
$giorno = htmlspecialchars($_POST['giorno']);
}
if (isset($_POST['mese']))
{
$mese = htmlspecialchars($_POST['mese']);
}
if (isset($_POST['nome']))
{
$nome = htmlspecialchars($_POST['nome']);
}
$lunghezzanome = strlen($nome);
$totale = $giorno + $mese + $lunghezzanome;
switch($totale)
{
case $totale == 0 || $totale == 10 || $totale == 20 || $totale == 30 || $totale == 40 || $totale == 50 || $totale == 60 || $totale == 70 || $totale == 80 || $totale == 90 || $totale == 100;
$frasi = file('txt/frasi0.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 1 || $totale == 11 || $totale == 21 || $totale == 31 || $totale == 41 || $totale == 51 || $totale == 61 || $totale == 71 || $totale == 81 || $totale == 91 || $totale == 101;
$frasi = file('txt/frasi1.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 2 || $totale == 12 || $totale == 22 || $totale == 32 || $totale == 42 || $totale == 52 || $totale == 62 || $totale == 72 || $totale == 82 || $totale == 92 || $totale == 102;
$frasi = file('txt/frasi2.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 3 || $totale == 13 || $totale == 23 || $totale == 33 || $totale == 43 || $totale == 53 || $totale == 63 || $totale == 73 || $totale == 83 || $totale == 93 || $totale == 103;
$frasi = file('txt/frasi3.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 4 || $totale == 14 || $totale == 24 || $totale == 34 || $totale == 44 || $totale == 54 || $totale == 64 || $totale == 74 || $totale == 84 || $totale == 94 || $totale == 104;
$frasi = file('frasi4.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 5 || $totale == 15 || $totale == 25 || $totale == 35 || $totale == 45 || $totale == 55 || $totale == 65 || $totale == 75 || $totale == 85 || $totale == 95 || $totale == 105;
$frasi = file('txt/frasi5.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 6 || $totale == 16 || $totale == 26 || $totale == 36 || $totale == 46 || $totale == 56 || $totale == 66 || $totale == 76 || $totale == 86 || $totale == 96 || $totale == 106;
$frasi = file('txt/frasi6.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 7 || $totale == 17 || $totale == 27 || $totale == 37 || $totale == 47 || $totale == 57 || $totale == 67 || $totale == 77 || $totale == 87 || $totale == 97 || $totale == 107;
$frasi = file('txt/frasi7.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 8 || $totale == 18 || $totale == 28 || $totale == 38 || $totale == 48 || $totale == 58 || $totale == 68 || $totale == 78 || $totale == 88 || $totale == 98 || $totale == 108;
$frasi = file('txt/frasi8.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
case $totale == 9 || $totale == 19 || $totale == 29 || $totale == 39 || $totale == 49 || $totale == 59 || $totale == 69 || $totale == 79 || $totale == 89 || $totale == 99 || $totale == 109 || $totale == $totale >= 110;
$frasi = file('txt/frasi9.txt', FILE_IGNORE_NEW_LINES);
$indice_random = array_rand($frasi);
echo $frasi[$indice_random];
break;
}
?>