Registration form

This is a discussion on "Registration form" within the Other Programming Languages section. This forum, and the thread "Registration form are both part of the Program Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > Other Programming Languages

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Jul 31st, 2007, 11:48
New Member
Join Date: Jul 2007
Location: Bangalore
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Registration form

hi,

My name is pradeep.I have created registration form with field names
name,designation,company,address,email.once the user fill the form and click on submit button,all the data should go to another email id and thank you message should be displayed.I don't no how to do this.I am new to this webdevelopment.If anybody helps ,it will be very useful.

regards,
pradeep
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jul 31st, 2007, 12:49
Up'n'Coming Member
Join Date: Jul 2007
Location: France
Posts: 97
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Registration form

If you post the contents of your form, everything between these two tags <form></form>, somebody will be able to see exactly what you've done and usually perform a simple edit.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Aug 2nd, 2007, 10:28
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Aug 2nd, 2007, 12:37
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Registration form

Using PHP would probably be the best solution.

Here's a good tutorials/script - PHP Mail Form: Secure and Protected
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Aug 2nd, 2007, 12:57
New Member
Join Date: Jul 2007
Location: Bangalore
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Registration form

hi,
thanks for ur reply.but my manager is asking me to do it in asp and html.
I don't no how to code it in asp,still i am trying it hard.I have to send all text box value to email id.How i am not getting.Please help me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
html, jsp

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom questions on registration form darecia Website Planning 5 Jul 10th, 2007 07:21
Registration script cullinanweb PHP Forum 6 Feb 6th, 2007 13:33
registration form in php ksuguy24 Flash & Multimedia Forum 5 Jul 11th, 2006 21:17
Login / Registration help Noobie PHP Forum 1 Apr 14th, 2006 14:01


All times are GMT. The time now is 06:07.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42