say,i’ve sql and i get output in a while loop.
UPDATED
mysql code
While()
{
$a[] = row[‘a’];
}
$a;
Note Here $a is array.
Can,i pass this in fql SELECT query?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No you can’t, but you can do something like:
and pass that as a list in an IN clause.
Note that I have no idea what you want to do with it, and since your code looks like some kind of pseudo code, I’ve tried replying with the same syntax. I have no idea how you end that while loop or get anything but the same value from
$row['a'].