Folks,
I have created a function that accepts a dynamic number of arguements
and while it works, I'm wondering if I am passing it data in a correct
format...
I call the function as so
myFunction($myA rray, a, b ,c);
a, b and c are elements in $myArray... Is the above syntax incorrect?
Should I use
myFunction($myA rray, "a", "b" ,"c");
in order to be more correct?
I'm afraid that while it works now, some minor bug fix later might prove
to be a show stopper for me...
All help,via the newsgroup (for all to learn) is greatly appreciated,
randelld
Comment