functions
I have a function that I use in multiple pages. I don't want to define the function in every page. Is there a way to include a function I made. For example:
include('function.inc');
function();
If the function is defined in function.inc, how do I make the function global so it can be defined on one page, included and used on another page?
Thanks :)
|