Okay, I have one.php and two.php, I have a function on two.php but I have my variables on one.php, whats the best way to transfer a lot of variables to two.php?
I used function($variable1, $variable2, $variable3)'and for some reason it stopped working after I had 14 or more arguments.
Any ideas?
You could put the variables into an array, then pass the array to the function.