vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Custom Global Variables - Please Help (https://vborg.vbsupport.ru/showthread.php?t=44631)

Rory 10-14-2002 11:42 PM

Custom Global Variables - Please Help
 
Hi Iam having a problem that when i include stuff in my phpinclude template the variable is not availabe to any templates. Here is an example:

Here is my phpinclude file :

// This code is PHP4 only:
// ob_start();
// require("yourheader.html");
// $header = ob_get_contents();
// ob_end_clean();

$authed_user = $_SERVER['PHP_AUTH_USER'];

mysql_connect("localhost", "####", "#######");
mysql_select_db("######");

if (!$authed_user) {
exit;
}

$query = "SELECT board_username,board_password from subs where u_name = '$authed_user'";
$result = mysql_query($query);
$make = mysql_fetch_row($result);
$b_username = $make[0];
$b_password = $make[1];

if (!$b_password || !$b_username) {
$b_username = "NoUser";
$b_password = "password";
}

#echo "u:$b_username p:$b_password";
#exit;

When I uncomment the last 2 lines it echos the correct username and password and exits. When I comment the ehco comman and exit out (so it runs through the entire page), the variables arent being replaced on my template. Here is a copy of my username_loggedout template :

<tr valign="top">
<td><input type="hidden" name="username" value="$b_username" size="25">
<input type="hidden" name="password" value="$b_password" size="25"></td>
</tr>

When I view the source of the page the values are showing as "". It seems like it would work but iam obviously doing something wrong. Thansk for the help.

Rory

Rory 10-14-2002 11:45 PM

Forgot......

I have register globals off, and i have tested with static variables and those arent passed either.

Such as :

$beer = "Hot Sauce";

in the phpinclude template returns NULL when the page is generated.

Steve Machol 10-15-2002 12:49 AM

Rory, please go to this page and enter your username, to show you are licensed. (you will need to use your customer number and password to access that page)
Thank you.

Rory 10-15-2002 12:51 AM

Quote:

Originally posted by Steve Machol
Rory, please go to this page and enter your username, to show you are licensed. (you will need to use your customer number and password to access that page)
Thank you.

Done. Thanks.

Rory

Steve Machol 10-15-2002 12:58 AM

Thanks!

Xenon 10-15-2002 07:58 AM

you can't use the vars in every template, because some templates are called within a function and you have to globalize this vars in the function before, ... you have to edit functions.php ;)


All times are GMT. The time now is 01:46 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.00931 seconds
  • Memory Usage 1,727KB
  • 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_quote_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