In php how would you create a function that could take an unlimited number of parameters: myFunc($p1, $p2, $p3, $p4, $p5...);
myFunc($p1, $p2, $p3, $p4, $p5...);
My next question is: how w
Is there a reason why you couldn't use 1 function argument and pass all the info through as an array?