vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Template help (https://vborg.vbsupport.ru/showthread.php?t=53903)

Serge 06-05-2003 10:13 PM

Template help
 
Ok i'm having a bit of a problem. I tried to make my own template function to call my templates for my website where here is what I got:

The gettemplate function:
PHP Code:

/////////////////// Start Gettemplate //////////////////
function gettemplate($templatename) {
//Get template from database
$template mysql_query("SELECT template FROM template WHERE title = '".addslashes($templatename)."'") or
        die (
mysql_error());
$template_body mysql_fetch_array($template);
return 
str_replace("\\'""'"addslashes($template_body['template']));


The call for the template inside a webpage:

PHP Code:

eval("\$header = \"".gettemplate('main_head')."\";"); 

I have that exact thing in index.php on my site but when I call up index.php it shows nothing.

Could anyone help me on why when I call the templates they arn't showing up?

Serge 06-05-2003 11:16 PM

Well I figuare I would post an update on what I have done so far. I have ran a small test script that would insure that the templates where there and it worked and it did exactly what I wanted it to do. So I guess my problem is the function which is above.

Velocd 06-06-2003 03:02 AM

This should work fine:

PHP Code:

function findtemplate($templatename) {

    
$gettemp mysql_query("SELECT template FROM template WHERE title='".addslashes($templatename)."' LIMIT 1") or die(mysql_error());

    
$tmp mysql_fetch_array($gettemp);

    
$tmp addslashes($tmp);
    
$tmp str_replace("\\'","'",$tmp);

  return 
$tmp;


Store as variable:
PHP Code:

eval("\$template= \"".findtemplate('homepage')."\";"); 

Or output directly:
PHP Code:

echo findtemplate('homepage'); 


Serge 06-06-2003 03:33 AM

Either echoing it our directly or the other way worked and I can't seem to find out why? Do I have php setup wrong maybe? Could someone please help.

Velocd 06-06-2003 02:54 PM

I don't get it, what are you trying to figure out? So please clarify.
You have a solution to your template problem, what does it have to do with the setup of PHP?

Serge 06-06-2003 05:58 PM

The solution you gave didn't work. So I need another solution. I remeber one time I had a switch statement that didn't work because register_globals was turned off so I thought that maybe this or someone other set-up variable was causing my problems but I think I got an answer over at sitepoint.

Thanks anyways!


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