MySQL Stored Procedure Pass Array of Ids into it

I need to pass Array of Ids into it MySQL Stored Procedure, is this possible? I am running mysql 5.1.20.

yes, pass them in as a VARCHAR of comma-delimited values

I am looking at links here:
http://forums.mysql.com/read.php?98,81490,82857#msg-82857
http://forge.mysql.com/snippets/view.php?id=4

I need to create a temp table and put the comma delimited values into that table.

If lot of people are calling the procedrue split_string, does it mean
only one will be executed at a time and rest of the request will be dropped?

would split_string will forked to create many process to handle the request?

why do you need to create a temp table?

I guess you don’t need temp table, pass a big string with comma delimited as varchar.