come si fa a fare in modo che appena riempite le caselle e premuto il bottone le informazioni e il messeggio arrivino a me!Codice HTML:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> <!-- .Stile1 {color: #FFFFFF} --> </style> </head> <body class="sub"> <table width="100%" border="0" cellpadding="4" cellspacing="0" bgcolor="#000000"> <tr> <td width="100%" style="vertical-align: top"> <form action="" method="post" name="form1" id="form1"> <table width="90%" border="0" cellspacing="2" cellpadding="4"> <tr> <td colspan="2" class="TitleColor Stile1" style="vertical-align: top"> <label for="name">Nome: </label> <input id="name" name="textfield" type="text" size="50" /> </td> </tr> <tr> <td colspan="2" class="TitleColor Stile1" style="vertical-align: top"> <label for="email">Email: </label> <input id="email" name="textfield2" type="text" size="50" /> </td> </tr> <tr> <td colspan="2" class="TitleColor Stile1" style="vertical-align: top"> <label for="subject">Soggetto:</label> <input id="subject" name="textfield2" type="text" size="50" /> </td> </tr> <tr> <td colspan="2" class="TitleColor Stile1" style="vertical-align: top"> <label for="message">Messaggio:</label> <br /> <br /> <textarea id="message" name="textfield2" rows="5" cols="50"></textarea> </td> </tr> <tr> <td colspan="2"> <input name="Submit" type="submit" value="invia" /> </td> </tr> </table> </form> <p> </p> </td> </tr> </table> </body> </html>