When I write a function I normally pas variables like this:
function test($var1) {
code...
}
How can I make all current variables available to that function? Without having to write them all into the function e.g. function($var1, var2.... var20) I am using the same function to all my pages - and have different variables on each page. I don't want to wirte them all 100 into the function! 😉
Best regards.
Asbjørn Morell.