Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is their a code were you can use Or in a mysql query?

I used this code to find some Emails from a reciver.

mysql_query("select * from Friends where Reciver like '%$term%'");

but i want to do a code like

mysql_query("select * from Friends where Reciver or Sender like '%$term%'");

my question is? is this right because when I try it it doesn't come up with anything?

If it isn't right could you say so and say why it isn't? i learn well from my mistakes?

share|improve this question

4 Answers

up vote 4 down vote accepted

Here is how you do it

mysql_query("SELECT * FROM Friends WHERE Reciver LIKE '%$term%' OR Sender LIKE '%$term%'");
share|improve this answer

1st of all. Check out the dangers of SQL Injection.

2nd try this query.

select * from Friends where Reciver LIKE '%$term%' OR Sender LIKE '%$term%'
share|improve this answer
1  
+1 for mentioning sql injection, which we all ignored – Ibu May 23 '11 at 9:31
select * from Friends where Reciver like '%$term%' or Sender like '%$term%';
share|improve this answer

You can do this query and for that your query should be like this:

select * from Friends where Reciver like '%$term%' or Sender like '%$term%'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.