Current location: Hot Scripts Forums » Programming Languages » PHP » Replacing drop down form menu with fixed value


Replacing drop down form menu with fixed value

Reply
  #1 (permalink)  
Old 04-05-04, 02:25 PM
NCC1701's Avatar
NCC1701 NCC1701 is offline
Newbie Coder
 
Join Date: Mar 2004
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Replacing drop down form menu with fixed value

I have a drop down menu on a form which when the option is selected and submitted is passed onto another form on another web site using cURL:
PHP Code:

<?php 
            
foreach ($sites as $site) {
                
$selected = (($site == @$_POST['site']) ? '     selected="selected"' '');
                echo 
'<option value="',$site,'"',$selected,'>',$site,'</option>';
            }
            
?>
now what i need to do is remove the drop down menu as i want to hard code one option that connot change but will still be passed onto the other form on the other web site, any ideas as to how i would go about doing this?

cheers
NCC1701
Reply With Quote
  #2 (permalink)  
Old 04-05-04, 02:47 PM
Bonzo's Avatar
Bonzo Bonzo is offline
Coding Addict
 
Join Date: Jan 2004
Posts: 340
Thanks: 0
Thanked 0 Times in 0 Posts
Form

I would have said you have two options :

type = "hidden" - will be passed and the user will know nothing about it

value = " your option" - I dont think the user can change this

Anthony
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating a drop down menu ? ? ? Spreegem PHP 4 03-09-05 09:34 AM
Creating a drop down menu? Spreegem HTML/XHTML/XML 8 08-30-04 11:40 PM
DHTML drop down menu -Joshua- Script Requests 2 03-16-04 07:29 PM
drop down menu problem !!! nurqeen PHP 1 02-08-04 08:07 PM
putting content in a drop down menu tom PHP 7 07-04-03 02:25 PM


All times are GMT -5. The time now is 10:25 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.