yes... you can suppliy an array and using array is easier... But sometimes, you just wonder if that is possible to be done by php.. Anyone got any suggestsion?
this is probably along the same lines as an array, but you could send a comma delimited string. Then explode the string...but then we are back to an array...so, never mind
great.... you are SMART..... you just figureouted everything! THX~ even it is not like some function that does('asdf', 'asdf', 'asdf'...) but('asdf, asdf, asdf....') works with me tooo... thx!~
PHP has a built in function for this
function myFunc() { print_r( func_get_args() ); } myFunc( 1, 2, 3, 4, 5, 6, 7, 8, 9 );