Ciao, grazie per avermi risposto, scusate la posto di seguito.
codice HTML:
<html>
    <head>
        <title>SCELTA UTENTE</title>
    </head>
    <body>
            <table align="center" border="1">
         <tr>
             <td>
                 <center>
                     <h1>Scelta Utente</h1>
                 </center>
                 <hr>
                 <form method="get" action="info2.php">
                     Nome: <input type="text" name="nome" size="15"><br>
                     Password: <input type="password" name="password" size="8"><br>
                
                     Quali argomenti preferiresti approfondire:<br>
                     <input type="checkbox" name="argomenti[]" value="HTML"> Informazioni su HTML <br>
                     <input type="checkbox" name="argomenti[]" value="immagini"> Immagini <br>
                     <input type="checkbox" name="argomenti[]" value="collegamenti"> Collegamenti e URL <br>
                     <input type="checkbox" name="argomenti[]" value="multimedia"> Oggetti multimediali <br>
                     <input type="checkbox" name="argomenti[]" value="XHTML"> XHTML versione 1.0
                     <hr>
                
                     <center>
                         <input type="submit" value="Invia!">
                         <input type="reset" value="Cancella tutto!">
                     </center>
                 </form>
             </td>
        </tr>
    </table>
  </body>
</html>