Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Drop down list + action & remeber selection
Old 10-25-2010, 05:04 AM Drop down list + action & remeber selection
Banned

Posts: 408
Name: mushget
Trades: 0
hello,


i want to create a form containing :

1. drop down list of countries (that i managed to create)
2. action on selection (redirect to a link on country selection)
3. post the selected option into a text box below and remeber (if possible)

The remeber part is optional .

I want a form where user will select country , based on the selection to be redirected to a link and message display , you selected : [textarea]Option[/textarea]

can it be done?
mushget is offline
Reply With Quote
View Public Profile Visit mushget's homepage!
 
 
Register now for full access!
Old 10-25-2010, 02:54 PM Re: Drop down list + action & remeber selection
Experienced Talker

Posts: 47
Trades: 0
use PHP and the $_POST['NAME OF DROPDOWN HERE'] for the remember but rest is just html;
HTML Code:
<form action="page url" method="post">
    <select name="countrybox">
       <option value="Country name">Country Name</option>
    </select>
    <input type="submit" value="submit form" />
</form>
make a new file called 'action.php' or what you want to call it ending with .php and have this as the code in it;
PHP Code:
<?php 
$country 
$_POST['country'];
?>
<input type="text" value="<?php echo $country?>" />
Make sure that your using a webhost with PHP enabled (not a file on your computer) else this wont work.

Last edited by NextToNothing; 10-25-2010 at 03:00 PM..
NextToNothing is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Drop down list + action & remeber selection
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.09774 seconds with 12 queries