View Single Post
  #3 (permalink)  
Old Aug 2nd, 2007, 10:28
deepujbhat deepujbhat is offline
New Member
Join Date: Jul 2007
Location: Bangalore
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Registration form

hi,
I am pradeep.I am new to the web development.I have created html form
with six fields.once i click on the submit button all data should go
to another email id.It should work from remote server too.I don't no
how to do this one.If anybody help on this problem it will be very
helpful for my job.
Please see the below code.
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <body>
      <center><h1>Registration Form</h1>
          <strong><font color="#0000FF">Please fill the below form</font></
strong>
                     <br>
                     (<font color="#9B0000">All fields are mandatory</
font>) <br><br>
      <form
         action="welcome.asp" method="get" id="regForm"
         name="regForm">
         <table>
            <tr>
               <td align="right">UserName: </td>
               <td><input type="text" name="userName"/></td>
            </tr>
            <tr>
               <td align="right">Designation: </td>
               <td><input type="text" name="designation"/></td>
            </tr>
            <tr>
               <td align="right">Company: </td>
               <td><input type="text" name="company" /></td>
            </tr>
            <tr>
               <td align="right">Address: </td>
               <td><input type="text" name="address" /></td>
            </tr>
            <tr>
               <td align="right">Contact No: </td>
               <td><input type="text" name="contact no"/></td>
            </tr>
            <tr>
               <td align="right">Email Id: </td>
               <td><input type="text" name="email id" /></td>
            </tr>
            <tr>
               <td colspan="2" align="right">
                  <input type="submit" value="Register"/>
               </td>
            </tr>
         </table>
      </form>
          </center>
  </body>
</html>

Last edited by karinne; Aug 2nd, 2007 at 12:36. Reason: Please use [ code ]...[ /code ] tags when displaying code.
Reply With Quote