Hi there,
I am currently working on a PHPBB project and I am facing some difficulties in sending a template variable to the `overall_footer.html` file. I have been trying to figure this out for some time now, but I haven't been successful.
I have a specific variable that I need to pass from one template file to `overall_footer.html`, so that I can display its value in the footer section of the forum. I have looked through the PHPBB documentation, but I couldn't find any information on how to achieve this.
Any help or guidance on how I can send a template variable to `overall_footer.html` would be greatly appreciated. Thank you in advance!

Hey there,
I encountered a similar issue while working on my PHPBB project. After some research and trial-and-error, I found a solution to send a template variable to `overall_footer.html`. Here's how you can do it:
First, open the template file where you want to assign the variable. In my case, it was `overall_header.html`. Locate the line where the template variable needs to be assigned, and add the following code:
Make sure to replace `$my_variable` with the actual variable you want to send to `overall_footer.html`.
Now, go to your PHP file (e.g., `index.php`) where you are handling the logic for this template. Before you call the `page_footer()` function, add the following code:
Replace `$my_variable_value` with the actual value you want to assign to the template variable.
Save your changes and give it a try. The variable should now be accessible in `overall_footer.html`. You can display its value by using `{$my_variable}` wherever you need it.
I hope this solution works for you as well. Let me know if you have any further questions or need any assistance. Good luck!