943,845 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 9040
  • PHP RSS
May 20th, 2008
0

Php Mysql : Code for Multiple Field Search

Expand Post »
What would be the php mysql code to search more than 1 field in a table ?

Im trying to search for a given partial phone number in all three fields home mobile and work ..

im trying to use

$query = "SELECT `first`, `last`, `home_phone` , `work_phone` , `mobile_phone` FROM `profiles` WHERE LIKE '%516353%'

but this returns everything thats in the table

Any help would be appreciated
Similar Threads
Reputation Points: 10
Solved Threads: 1
Light Poster
isomillennium is offline Offline
25 posts
since Feb 2008
May 20th, 2008
0

Re: Php Mysql : Code for Multiple Field Search

php Syntax (Toggle Plain Text)
  1. $query = "select * from table where home_phone like '%516%' OR work_phone like '%516%' OR mobile_phone like '%516%'";
Moderator
Featured Poster
Reputation Points: 524
Solved Threads: 356
Purple hazed!
nav33n is offline Offline
3,878 posts
since Nov 2007
May 20th, 2008
0

Re: Php Mysql : Code for Multiple Field Search

Click to Expand / Collapse  Quote originally posted by nav33n ...
php Syntax (Toggle Plain Text)
  1. $query = "select * from table where home_phone like '%516%' OR work_phone like '%516%' OR mobile_phone like '%516%'";
thatnk it worked fine i just had to change OR TO ||
Reputation Points: 10
Solved Threads: 1
Light Poster
isomillennium is offline Offline
25 posts
since Feb 2008
May 20th, 2008
0

Re: Php Mysql : Code for Multiple Field Search

It should work with OR.. But anyway, cheers!
Moderator
Featured Poster
Reputation Points: 524
Solved Threads: 356
Purple hazed!
nav33n is offline Offline
3,878 posts
since Nov 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: FTP problem
Next Thread in PHP Forum Timeline: error_reporting() doesn't seem to work





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC