Page 131 - Corso di PHP - Livello base
P. 131

Inserisci il tuo nome:<br />
                    <input type='text' size='50' name='utente' value=\""; echo stripslashes($_POST['utente']);
                 echo "\" /><br />
                    Inserisci la tua e-mail (non sarà pubblicata): <br />

                    <input type='text' size='50' name='email' value='"; echo stripslashes($_POST['email']);
                 echo "' /><br />
                    Inserisci il messaggio: <br />

                    <textarea name='messaggio' rows='10' cols='50'>"; echo
                 stripslashes($_POST['messaggio']); echo    "</textarea>
                    <br /><br />
                    <input type='submit' name='submit' value='Firma'>

                    <input type='reset' valur='Cancella'>
                    </form>";

                 }
                 if (!isset($_POST['submit']))
                 {

                    mostraForm();
                 }

                 else
                 {

                    $errore = 0;
                    if(empty($_POST['utente']))

                    {
                       $errore = 1;


                       $errstr[] = "Inserisci il tuo nome...";
                    }
                    if (empty($_POST['messaggio']))

                    {

                       $errore = 1;

                       $errstr[] = "Inserisci il tuo messaggio...";
                    }

                    if (empty($_POST['email']))
                    {

                       $errore = 1;

                       $errstr[] = "Inserisci la tua email...";


                                                          131
   126   127   128   129   130   131   132   133   134   135   136