Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6971441
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:50:26+00:00 2026-05-27T16:50:26+00:00

I tried including my file in header.php or my theme’s index.php , but I

  • 0

I tried including my file in header.php or my theme’s index.php, but I cannot access the variables in the included file from let’s say my theme’s footer.php or even my theme’s page templates.

Here’s what I’m including:

<?php

// some parameters
$var_research = 5;
$var_researchtrans = 7;
$var_output = 9;
$var_edit_indi = 11;
$var_contact = 15;
$var_transition = 19;

?>

Now what I need is to be able to use the variables in footer.php, for example.

Hope someone out there has an answer. Thanks, y’all.

OK, here’s how I made it work:

In functions.php

<?php // functions.php

// ...

function my_var($va_var) {

    // some parameters
    $var_research = 5;
    $var_researchtrans = 7;
    $var_output = 9;
    $var_edit_indi = 11;
    $var_contact = 15;
    $var_transition = 19;
    $var_sometext = "text test";

    eval("\$return_var = $" . $va_var . ";");
    return $return_var;

}

?>

and in footer.php

<?php // footer.php

// ...

echo "blah blah " . my_var("var_sometext");

// ...

?>

It’s working, but did I do it right? is there a better/right way to do this? Thanks again, everyone.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T16:50:26+00:00Added an answer on May 27, 2026 at 4:50 pm

    The best place to include your own functions are in your theme’s functions.php file.

    If you want to access a variable in multiple files, you can create a function in your functions.php and access that function anywhere within the theme.

    In functions.php

    function your_variable()
    {
        $var = 'your variable';
        return $var;
    }
    

    And in your footer.php

    echo your_variable();
    

    For your updated query

    function my_var($va_var) {
    
        $out = array();
        // some parameters
        $out['var_research'] = 5;
        $out['var_researchtrans'] = 7;
        $out['var_output'] = 9;
        $out['var_edit_indi'] = 11;
        $out['var_contact'] = 15;
        $out['var_transition'] = 19;
        $out['var_sometext'] = "text test";
    
        return $out[$va_var];
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Tried examples from 'php.net' but don't understand what's the problem. Any suggestions? <?php $_SESSION['test']
Tried to map it from Preferences -> Settings -> Keyboard, but the key combo
Today I tried including the apache.commons.codec package in my Android application and couldn't get
Tried this: $('.link').click(function(e) { $.getScript('http://www.google.com/uds/api?file=uds.js&amp;v=1.0', function() { $('body').append('<p>GOOGLE API (UDS) is loaded</p>'); }); return
Tried a bunch of things but I can't get it to work consistently amid
tried to find the answer by googling and in MSDN but with no luck.
I have tried so many things but I don't understand this sooo confusing. I
I'm having issues with a file uploading utility in my PHP application. When sending
I have tried including sharekit classes to my three 20 project. All share kit
I have a text file that looks similar to; section header 1: some words

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.