Jump to content

Initialize global variables


contiw

Recommended Posts

I need the following three variables to be available globally, that is to every page.

(An common header.html uses them at every page).

Please teach me how to initialize them.

(inside the header.html maybe?)

 

          
'U_M_CODE'   => append_sid("{$phpbb_root_path}faq.$phpEx", 'mode=bbcode'),
'U_M_TERMS'  => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=terms'),
'U_M_PRV'    => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=privacy'),        

 

Thank you.

   

Link to comment
Share on other sites

So I define this constant in my index.php and it works ok.

 

define("UU_M_TERMS", append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=terms'));
echo UU_M_TERMS;
echo constant("UU_M_TERMS");

 

When I open another page the constant is not available any more.

Should it be present in all pages and for the duration of the session?

 

ThankYou

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.