RE: [PHP] mixed datatype

2002-01-28 Thread Matt Schroebel
http://www.php.net/manual/en/functions.arguments.php#functions.variable-arg-list -Original Message- From: charlesk [mailto:[EMAIL PROTECTED]] What does the function look like that it can take unlimited arguments? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] mixed datatype

2002-01-28 Thread Jim Lucas [php]
? function MyFunc($item, $args=) { extract((isset($args)?$args:array())); return($item, $first_arg$second_arg$third_arg); } //call MyFunc() echo MyFunc(hi there, array( first_arg = my name ,