vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Getting the selected value on a dropdown menu (https://vborg.vbsupport.ru/showthread.php?t=111115)

DiscussAnything 03-22-2006 06:38 PM

Getting the selected value on a dropdown menu
 
This is for vb2.3.x in case it matters.

I pass a URL to an edit action , but can't get the selected value to show up. It just defaults to the first option in the list.

Example of an URL I pass is: example.php?action=edit&id=1&select=3

The piece of the code in the template is:

Code:

<p><b>Dropdown box</b><br>
<SELECT NAME="select" SIZE="1">
<option value="0">Choose type:</option>
<option value="1">option 1</option>
<option value="2">option 2</option>
<option value="3">option 3</option>
<option value="4">option 4</option>
</SELECT></p>

The php file itself doesn't have anything yet to determine which one should be the already selected value for the dropdown. I was thinking of something like this, but it returns a 'unexpected '}' error':

PHP Code:

if ($select=='3') {
    (
$sel3 == 'selected')
    } else {
    (
$sel3 == '')
    } 

in conjunction with this (which would be for all options, not just example 3):

Code:

<p><b>Dropdown box</b><br>
<SELECT NAME="select" SIZE="1">
<option value="0">Choose type:</option>
<option value="1">option 1</option>
<option value="2">option 2</option>
<option value="3" $sel3>option 3</option>
<option value="4">option 4</option>
</SELECT></p>


Is there something in place that I can use, or can anyone help me out or point me in the right direction?

Thanks in advance

nevermind, i got it now. The correct php was:

PHP Code:

if ($select == '1') {
      
$sel1.=" SELECTED ";
    }
if (
$select == '2') {
      
$sel2.=" SELECTED ";
    }
if (
$select == '3') {
      
$sel3.=" SELECTED ";
    }
if (
$select == '4') {
      
$sel4.=" SELECTED ";
    } 

And the just use $sel1 etc in the template, where 'selected' is supposed to show up.


All times are GMT. The time now is 10:52 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00975 seconds
  • Memory Usage 1,719KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete