vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   correct multiple checkbox value variables (https://vborg.vbsupport.ru/showthread.php?t=102947)

nexus851 12-14-2005 01:37 PM

correct multiple checkbox value variables
 
I need the correct 'value' variable for the "multiple selection checkbox"... Rightnow, when i $post[field33], it gives me a number like 1,2,3... (selection choice) instead of the actual value (male,female) that i want... anyone know the correct variable for the value output using the multiple selection checkbox?

i tried $postname[field33], $post[field33], but none of that works =(

please help...

noppid 12-14-2005 02:48 PM

I think you have to eval what to assign as a value on display.

PHP Code:

<if condition="$post[field33] == 1">Text for box one</if>
<if 
condition="$post[field33] == 2">Text for box two</if> 

and so on.

Zowners 04-20-2006 09:41 PM

or
Code:

<if condition="$post['fieldX'] & 1">
        CODE TO DISPLAY IF OPTION 1 IS SELECTED
</if>
<if condition="$post['fieldX'] & 2">
        CODE TO DISPLAY IF OPTION 2 IS SELECTED
</if>
<if condition="$post['fieldX'] & 4">
        CODE TO DISPLAY IF OPTION 3 IS SELECTED
</if>
<if condition="$post['fieldX'] & 8">
        CODE TO DISPLAY IF OPTION 4 IS SELECTED
</if>
<if condition="$post['fieldX'] & 16">
        CODE TO DISPLAY IF OPTION 5 IS SELECTED
</if>
<if condition="$post['fieldX'] & 32">
        CODE TO DISPLAY IF OPTION 6 IS SELECTED
</if>
<if condition="$post['fieldX'] & 64">
        CODE TO DISPLAY IF OPTION 7 IS SELECTED
</if>
<if condition="$post['fieldX'] & 128">
        CODE TO DISPLAY IF OPTION 8 IS SELECTED
</if>


mikeclarke 04-21-2006 05:00 AM

Thanks for the help.


All times are GMT. The time now is 03:03 PM.

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.00937 seconds
  • Memory Usage 1,717KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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