vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Dealing With Conditions Errors Without a Condition? (https://vborg.vbsupport.ru/showthread.php?t=207786)

TheMayhem 03-09-2009 05:53 AM

Dealing With Conditions Errors Without a Condition?
 
So I assume I am going to learn something new today with vBulletin. I have a plugin that runs this wonderful query.

PHP Code:

// Get Pay Per View  Results
$ppv $db->query_first("SELECT * FROM " TABLE_PREFIX "ppv where id='1'"); 

And this query runs on a vBulletin global start. It works perfectly fine and I am able to retrieve certain parts of the table that I am selecting from. So I go to insert an array of data into the template and I try

PHP Code:

$ppv[ppv_name

And it works perfectly fine. So then I try and insert another part of the array to display for users which is

PHP Code:

$ppv[1_wrestler1

And the template errors start coming

Quote:

The following error occurred when attempting to evaluate this template:

Parse error: syntax error, unexpected T_STRING, expecting ']' in /home/tmforum/public_html/includes/adminfunctions_template.php(3938) : eval()'d code on line 1
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.[/quote]

I could put this on line 1 or line 51 no matter what or any other part of that $ppv array that I try to insert and it gives errors gallore. So I guess my question is what in vBulletin or programming mechanics could cause this when there is no if statement in there and why would it only sound off the alarms for certain parts of the array even though all data type of that array are the same.

Dismounted 03-09-2009 06:06 AM

Try:
Code:

{$ppv[1_wrestler1]}

Marco van Herwaarden 03-09-2009 12:33 PM

You must enclose the key in double quotes if it starts with an integer or you will get a parse error.

TheMayhem 03-09-2009 07:24 PM

Quote:

Originally Posted by Marco van Herwaarden (Post 1763967)
You must enclose the key in double quotes if it starts with an integer or you will get a parse error.

I'm not really sure I follow what you mean. Could you give me an example?

Marco van Herwaarden 03-10-2009 10:13 AM

$ppv["1_wrestler1"]

TheMayhem 03-10-2009 11:25 PM

That gives you this:

Quote:

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/tmforum/public_html/includes/adminfunctions_template.php(3938) : eval()'d code on line 83

Dismounted 03-11-2009 06:19 AM

That will not work in a template (quoting, I mean). Assign that value to another variable, and use that instead.


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.01102 seconds
  • Memory Usage 1,731KB
  • 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
  • (3)bbcode_php_printable
  • (3)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