Re: [PHP] Call func with variable num params (Dont confuse with making func variable params)

2002-07-29 Thread Brent Baisley
Pass your parameter as an array rather than a variable. Then you traverse the array to get all your values. On Friday, July 26, 2002, at 09:38 PM, Mathieu Dumoulin wrote: > Ok, here i made a function that can accept an unknown number of params. > > In fact, it's a data interface for a mysql da

Re: [PHP] Call func with variable num params (Dont confuse with making func variable params)

2002-07-26 Thread Tom Rogers
Hi, Saturday, July 27, 2002, 11:38:44 AM, you wrote: MD> Ok, here i made a function that can accept an unknown number of params. MD> In fact, it's a data interface for a mysql database, when i call the MD> object's constructor it is in possibility to pass any number of table names MD> from 1 to

[PHP] Call func with variable num params (Dont confuse with making func variable params)

2002-07-26 Thread Mathieu Dumoulin
Ok, here i made a function that can accept an unknown number of params. In fact, it's a data interface for a mysql database, when i call the object's constructor it is in possibility to pass any number of table names from 1 to x. Now i got this other class called a data interfacer which sends a c