Is it possible to pass an array as an elemtent of a function??Yes
This is the right way.
Something like this:
$array1=array(1,2,3,4); $array2=array(a,b,c,d);
Function Somefunction($var1,$var2) { someprocess using $array1 and array2; }
Somefunction($array1,$array2);
No.
Or does something special have to be done?
Thanks,
Jeff
You could have tried it yourself.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php