Jump to content

Recommended Posts

Posted
i want to make a web form and i need to know how to link it...i'm not very technical and i haven't made the form yet but i will be using dreamweaver most likely. The Form will allow users to select their birth year and then when they click go! i want them to go to a new page specific to which box they checked in the form. If anyone on here knows how to do that or knows any sites that explain the linking process in detail for beginners i would appreciate it.:o

I like long walks, especially when they are taken by people who annoy me

-Noel Coward :p

  • Replies 6
  • Created
  • Last Reply

Top Posters In This Topic

Posted

Re: Linking A Form

 

Come on people...someone must know an online resource that explains it...or personally know how to do it in dreamweaver. I have posted this here and on yahoo answers and no-one will touch the question...i really need to know and all i can find on the web are auto generators that allow people to imput info about themselves and it will send me an email...and that isn't what i want...that doesn't even have a use. I will be making a form (or gettting) in dreamweaver and it will allow users to select a year (on a list of 5 or 10, i haven't decided yet) and when they click go! a new page will open with info specific to the number they selected. i need to know how to make the form open this new page as dreamweaver doesn't have tutorials for that and i can't find the info anywhere on the web when searching. The site will be html...i may use css.

I like long walks, especially when they are taken by people who annoy me

-Noel Coward :p

Posted

:(

 

yes...but thanks anyways for link.

 

[it doesn't quite cover what i want...and it's way to complex for me]

I like long walks, especially when they are taken by people who annoy me

-Noel Coward :p

Guest Wolfeymole
Posted
i need to know how to make the form open this new page as dreamweaver doesn't have tutorials for that and i can't find the info anywhere on the web when searching.

 

Dreamweaver Tutorials

Posted

Hi,

 

I think this is what you are after?? Have a look and try it out..

 

User selects their birth year, clicks go, and is taken to the relevant page.

 

<html>
<head>
 <title>Simple Form</title>
</head>

  <body>

     <form action="" method="post" id="frmDetails" name="frmDetails">
     
     <label for="selBirthYear">Select your birth year: </label>
     <select name="selBirthYear" id="selBirthYear">
       <option value="1989.html">1989</option>     
       <option value="1990.html">1990</option>
       <option value="1991.html">1991</option>
       <option value="1992.html">1992</option>
     </select>
     
     <br clear="all" />
     
     <input type="button" name="btnSubmit" value="Go" id="btnSubmit" onclick="window.location = document.frmDetails.selBirthYear.value" />
     
     </form>

  </body>
</html>

Need computer support? Then why not join Free PC Help. Register here

 

We are all members helping other members.

Please return here where you may be able to help someone else.

After all, no one knows everything and you may have the answer that someone needs.

  • 3 weeks later...
Posted

ty all for help.

 

thanks all...none of this was quite what i was looking for...but i appreciate it all the same. I'm no longer in need of a form.

I like long walks, especially when they are taken by people who annoy me

-Noel Coward :p

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...