I have this html form I am working on, and the form is good except when you submit the form it sends it to my email, which I don't want. Does anyone know how to send the data from the form to a data file like notepad or word? Thanks
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body><form action="mailto:gberning@nk.k12.oh.us" method="post" enctype="text/plain">
<p align="center"><font size="6" face="Trebuchet MS, Arial, Courier New">Tech Repair Form</font></p>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%">
<TR>
<TD width="30%"><DIV align="right">
<B>Name:</B>
</DIV>
</TD>
<TD width="70%">
<INPUT type="text" name="name" size="30">
</TD>
</TR>
<TR>
<TD><DIV align="right">
<p><B>Date:</B></p>
</DIV>
</TD>
<TD>
<INPUT type="text" name="Date" size="10">
</TD>
</TR>
<TR>
<TD><div align="right">
<p><strong>Type of Problem:</strong></p>
</div></TD>
<TD>
<div align="left">
<INPUT type="text" name="Type of Problem" size="20">
(Example: Computer, Printer, etc...) </div></TD>
</TR>
<TR>
<TD><DIV align="right">
<B>Description of Problem:</B>
</DIV>
</TD>
<TD><TEXTAREA name="Description of Problem" cols="60" wrap="virtual" rows="4">
</TEXTAREA>
</TD></TR>
<TR>
<TD> </TD>
<TD>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</TD></TR>
</TABLE>
</FORM>
</DIV>
<BR>
</FORM>
</BODY>
</HTML>
</body>
</html>
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body><form action="mailto:gberning@nk.k12.oh.us" method="post" enctype="text/plain">
<p align="center"><font size="6" face="Trebuchet MS, Arial, Courier New">Tech Repair Form</font></p>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%">
<TR>
<TD width="30%"><DIV align="right">
<B>Name:</B>
</DIV>
</TD>
<TD width="70%">
<INPUT type="text" name="name" size="30">
</TD>
</TR>
<TR>
<TD><DIV align="right">
<p><B>Date:</B></p>
</DIV>
</TD>
<TD>
<INPUT type="text" name="Date" size="10">
</TD>
</TR>
<TR>
<TD><div align="right">
<p><strong>Type of Problem:</strong></p>
</div></TD>
<TD>
<div align="left">
<INPUT type="text" name="Type of Problem" size="20">
(Example: Computer, Printer, etc...) </div></TD>
</TR>
<TR>
<TD><DIV align="right">
<B>Description of Problem:</B>
</DIV>
</TD>
<TD><TEXTAREA name="Description of Problem" cols="60" wrap="virtual" rows="4">
</TEXTAREA>
</TD></TR>
<TR>
<TD> </TD>
<TD>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</TD></TR>
</TABLE>
</FORM>
</DIV>
<BR>
</FORM>
</BODY>
</HTML>
</body>
</html>