vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Include within a Variable? (https://vborg.vbsupport.ru/showthread.php?t=77259)

Nickeh32 03-01-2005 02:26 PM

Include within a Variable?
 
I'm trying to set a variable that's another file, i'm trying to include it but it just put's the include at the top of the page not were the variable is.

Code:

$v = include('page.php');
This is what i did, what am i doing wrong can anyone help?

Also bearing in mind the variable is in the template!

Zero Tolerance 03-01-2005 02:52 PM

The include() function does not return a value, it would be best if you made page.php build up a variable, and then require() the file, after doing that you can then call the variable it has made :)

Quick Example:
FILE: page.php
PHP Code:

<?php
$myvar 
"Hello World!";
?>

FILE index.php
PHP Code:

<?php
require_once("page.php");
echo 
$myvar;
?>

Hope that helps :)

- Zero Tolerance

Nickeh32 03-01-2005 02:59 PM

Well as i said the the variable is in the template and i can't seem to enter PHP into it so i need to set the variable value as the other page!

I'm no good with PHP so i hope you can unserstand that.

and page.php is not relational to the forum it can't really be edited!

Link14716 03-01-2005 07:29 PM

Your example is this:
PHP Code:

$v = include('page.php'); 

To achieve this affect, use this:
PHP Code:

ob_start();
include(
'page.php');
$v ob_get_contents();
ob_end_clean(); 



All times are GMT. The time now is 01:38 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.01182 seconds
  • Memory Usage 1,715KB
  • 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
  • (4)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