Hello,
I am new to PHP and MySQL, but am learning quickly. Hopefully somebody can help me real quick.
I have an SQL query that I want to send a couple of number to. The numbers are 0 and 3 any idea how I can do this ? I will paste what I have below.
$find= "where c.customers_las tname like '%" . $keywords . "%' or c.customers_fir stname like '%" . $keywords . "%' or c.customers_ema il_address like '%" . $keywords . "' and member_level = '0'"; //<---- I want member_level to include 0 and 2.in its search.
Thanks for any help!
I am new to PHP and MySQL, but am learning quickly. Hopefully somebody can help me real quick.
I have an SQL query that I want to send a couple of number to. The numbers are 0 and 3 any idea how I can do this ? I will paste what I have below.
$find= "where c.customers_las tname like '%" . $keywords . "%' or c.customers_fir stname like '%" . $keywords . "%' or c.customers_ema il_address like '%" . $keywords . "' and member_level = '0'"; //<---- I want member_level to include 0 and 2.in its search.
Thanks for any help!
Comment