Re: [PHP] Re: Select IN array?

2001-07-15 Thread teo
Hi James! On Sun, 15 Jul 2001, James Tan wrote: dear chris, mysql does not support 'in' clause at the momment... the only way to this is to use the loop to generate the sql syntax.. orr.. use the implode function... to join the array into 1 string separated by the first parameter... huh?

[PHP] Re: Select IN array?

2001-07-14 Thread James Tan
dear chris, mysql does not support 'in' clause at the momment... the only way to this is to use the loop to generate the sql syntax.. orr.. use the implode function... to join the array into 1 string separated by the first parameter... $catsql = implode(or cid=, $catids); $catsql =