(1) form will go to email address, but it won't inside the email. the form will not show.

what am I doing wrong?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#000000">

 <form method="post" action="mailto:my_email@somewhere.com">
	
	<div align="center">
  <p>&nbsp;</p><table width="45%" border="0" bordercolor="#FFFFFF">
   <tr bgcolor="#FFFFFF"> 
    <th colspan="2"> 
     <p><font color="#3333FF">SOUNDS UNIQUE ENTERTAINMENT</font></p>
     <p>Join the list and be a VIP to one of the hottest clubs in the area<br>
     </p></th>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <th colspan="2"><font color="#3333FF">GUEST LIST<font size="-1"><br>
     <font color="#000000">opens at 3pm and closes at 9p.m or first 50 guest</font></font><font color="#000000" size="-1"> 
     Friday and Saturday but it excludes all special events. Guests must be at 
     the door before 9p.m</font></font></th>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <td width="31%">Name:</td>
    <td width="69%"> 
     <input name="name" type="text" id="name" size="35"></td>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <td>Email Address:</td>
    <td> 
     <input name="Email" type="text" id="Email" size="35"></td>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <td> Number of Guests:</td>
    <td> 
     <select name="# of Guest" id="# of Guest">
      <option value="0" selected>1</option>
      <option value="1">2</option>
      <option value="2">3</option>
      <option value="3">4</option>
     </select></td>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <td>Day:</td>
    <td> 
     <input name="Friday" type="checkbox" id="Friday" value="Friday">
     Friday 
     <input name="Saturday" type="checkbox" id="Saturday" value="Saturday">
     Saturday</td>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <td>(MM/DD/YYYY)</td>
    <td> 
     <input type="text" name="textfield"></td>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <td>Message:</td>
    <td> 
     <textarea name="Message" id="Message"></textarea> </td>
   </tr>
   <tr bgcolor="#FFFFFF"> 
    <td> 
     <input name="Reset" type="reset" id="Reset2" value="Reset"></td>
    <td> 
     <input type="submit" name="Submit" value="Submit Form"></td>
   </tr>
  </table>
 </div>
 <div align="center"></div>
 <div align="center"></div>
</form>
</body>
</html>

Try looking at the tutorial here

See if that helps you at all

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.