Below is My Array
Array ( [0] => test [1] => jaz )
I want to pass this array using IN Function in mysql like that
$q = "select * from claimant where org IN (Array)";
but i need to change my INDEXED ARRAY to simple Array like (1,2,3,4) how i can change array and pass it to mysql IN condition Thanks in Advance