• User Newbie

    Inviare dati da un form php ad un database access

    Come posso inviare dati da un form php ad un database access?

    Il mio form è questo:

    [php]<table width="377" border="1" align="center" cellpadding="1" cellspacing="1">
    <form method="post" action="inviamail.php">
    <tr>
    <td colspan="2" align="center"><span class="Stile2">Tutti i campi sono obbligatori</span></td>
    </tr>
    <tr>
    <td width="184"><div align="left"><span class="Stile3">Cognome e Nome</span></div></td>
    <td width="180"><input name="nome" type="text" size="30"></td>
    </tr>
    <tr>
    <td><div align="left" class="Stile3"><strong>Telefono</strong></div></td>
    <td><input name="telefono" type="text" size="30"></td>
    </tr>
    <tr>
    <td align="left" class="Stile3"><strong>E-Mail</strong></td>
    <td><input name="email" type="text" size="30"></td>
    </tr>
    <tr>
    <td height="149" colspan="2" align="center"><strong>Richiesta Informazioni</strong>
    <textarea name="messaggio" rows="4" cols="35"></textarea>
    </tr>
    <tr>
    <td colspan="2" align="center"><p class="Stile2">Desideri ricevere informazioni su servizi ed offerte?</p>
    <p class="Stile2">
    SI <input type="radio" name="trattamento_dati" value="accetto" checked>
    NO <input type="radio" name="trattamento_dati" value=""></td>
    </tr>
    <tr>
    <td colspan="1" align="center"><input name="submit" type="submit" value="Invia" /></td>
    <td colspan="1" align="center"><input type="reset" value="PULISCI I CAMPI " onClick="Modulo()"></td>
    </tr>
    </form>
    </table>[/php]Grazie anticipatamente per la risposta.