vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   echoing a $vboption via the script (https://vborg.vbsupport.ru/showthread.php?t=72578)

sabret00the 12-06-2004 09:34 PM

echoing a $vboption via the script
 
i'm wondering why this won't work
PHP Code:

         $grps_pagetitle "Groups @ $vboption[hometitle]"

i though ok if that won't work
PHP Code:

     $grps_pagetitle "Groups @" '$vboption[hometitle]' ""

but that just had the same results as
PHP Code:

     $grps_pagetitle "Groups @ \$vboption[hometitle]"

i'm wondering what i'm doing wrong.

filburt1 12-06-2004 09:42 PM

Single quotes don't parse variables, which is the main difference from double quotes.

This form is preferable:
PHP Code:

$grps_pagetitle "Groups @ " $vboption['hometitle']; 

Always use single quotes for constant array keys, no exceptions. I hate how vB's templates rely on deprecated methods to access arrays.

Also, note that
PHP Code:

"" 

...does nothing at all.

filburt1 12-06-2004 09:42 PM

Also, I just recalled that @ has special meaning in PHP (it surpresses warnings and errors). Be careful when using it.

sabret00the 12-06-2004 10:17 PM

Quote:

Originally Posted by filburt1
Also, I just recalled that @ has special meaning in PHP (it surpresses warnings and errors). Be careful when using it.

thanks, although the vboption[hometitle] still doesn't echo, if i type it into a template it echo's fine, just not via the script directly?

sabret00the 12-07-2004 09:30 AM

*bump*

sabret00the 12-07-2004 02:38 PM

doh it's $vboptions[array] not $vboption[array]

Natch 12-08-2004 09:20 AM

Was just gonna suggest that ;)


All times are GMT. The time now is 08:18 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.01101 seconds
  • Memory Usage 1,725KB
  • 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
  • (5)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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