Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 10-16-2004, 12:51 PM
Colin F's Avatar
Colin F Colin F is offline
 
Join Date: Jul 2004
Location: Switzerland
Posts: 1,551
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default eval() problem

Hi

I'm writing a testimonial script, but somehow I've run into some kind of problem.

I'm trying to implement a basic template system but I have a problem making bits. Running the database query through a while(.. fetch_array() .. ) I want to .= the bits, but all that comes out is the first database row.

When I don't fetch the template and don't use eval(), all the rows are displayed. Somehow I think it has something to do with the eval or the return() of the function in the eval, but I just can't figure it out...


Also, I have another page, an admin.php, that just doesn't want to display in my browser. I get a 404 with Internet Explorer and a download with opera. The funny thing is, yesterday it worked. It also doesn't work if I just put normal html code in that file. I'm thinking it's a server issue, or something with the way I upload, but I can't figure out *what* it is!


Really frustrating stuff, so I'd be glad if anyone can help
Reply With Quote
  #2  
Old 10-16-2004, 12:55 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

As for the eval problem, a little code snipet would help more ^^

For the file download, check the chmod, sometimes it's just that
Reply With Quote
  #3  
Old 10-16-2004, 02:17 PM
Colin F's Avatar
Colin F Colin F is offline
 
Join Date: Jul 2004
Location: Switzerland
Posts: 1,551
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Xenon
As for the eval problem, a little code snipet would help more ^^

For the file download, check the chmod, sometimes it's just that
chmod it's not...

here's the call:

PHP Code:
while ($quote $DB->fetch_array($quotes))
{
    if (
$setting['showtimedate'] == 1)
    {
        
$datetime date("d.n.Y"$quote[timestamp]);
    }
    if (
$setting['showcompany'] == AND $setting['showcompanyurl'] == 1)
    {
        eval(
'$companypiece = "' gettemplate('companypiece') . '";');
    }
    
    
$parsedquote nl2br($quote[quote]);
    eval(
'$testimonialbits .= "' gettemplate('testimonialbit') . '";');
    
}
echo 
$testimonialbits
and this is the gettemplate function:

PHP Code:
// output template to var, fetch template from DB if not preloaded
function gettemplate($templatename)
{
    global 
$DB$preloadedtemplates;
    
    if(!
array_key_exists($templatename$preloadedtemplates))
    {
        
$template $DB->query_first("SELECT * FROM " TABLE_PREFIX "template WHERE title = '$templatename'");
        
$template $template[template];
        
$preloadedtemplates[$templatename] = $template;
    }
    else
    {
        
$template $preloadedtemplates[$templatename];
    }
    
    return 
addslashes($template);

Reply With Quote
  #4  
Old 10-18-2004, 05:58 PM
Colin F's Avatar
Colin F Colin F is offline
 
Join Date: Jul 2004
Location: Switzerland
Posts: 1,551
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone have any idea about this?

Like I said, it's just displaying the first result, which indicates to me that it's quiting the while() loop for some reason...
Reply With Quote
Reply


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 On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:23 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.03747 seconds
  • Memory Usage 2,197KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (4)post_thanks_box
  • (4)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit_info
  • (4)postbit
  • (4)postbit_onlinestatus
  • (4)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete