Php Mysql : Code for Multiple Field Search

Reply

Join Date: Feb 2008
Posts: 25
Reputation: isomillennium is an unknown quantity at this point 
Solved Threads: 1
isomillennium isomillennium is offline Offline
Light Poster

Php Mysql : Code for Multiple Field Search

 
0
  #1
May 20th, 2008
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
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 3,833
Reputation: nav33n is a jewel in the rough nav33n is a jewel in the rough nav33n is a jewel in the rough nav33n is a jewel in the rough 
Solved Threads: 344
Moderator
Featured Poster
nav33n's Avatar
nav33n nav33n is offline Offline
Senior Poster

Re: Php Mysql : Code for Multiple Field Search

 
0
  #2
May 20th, 2008
  1. $query = "select * from table where home_phone like '%516%' OR work_phone like '%516%' OR mobile_phone like '%516%'";
Ignorance is definitely not bliss!

*PM asking for help will be ignored*
Reply With Quote Quick reply to this message  
Join Date: Feb 2008
Posts: 25
Reputation: isomillennium is an unknown quantity at this point 
Solved Threads: 1
isomillennium isomillennium is offline Offline
Light Poster

Re: Php Mysql : Code for Multiple Field Search

 
0
  #3
May 20th, 2008
Originally Posted by nav33n View Post
  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 ||
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 3,833
Reputation: nav33n is a jewel in the rough nav33n is a jewel in the rough nav33n is a jewel in the rough nav33n is a jewel in the rough 
Solved Threads: 344
Moderator
Featured Poster
nav33n's Avatar
nav33n nav33n is offline Offline
Senior Poster

Re: Php Mysql : Code for Multiple Field Search

 
0
  #4
May 20th, 2008
It should work with OR.. But anyway, cheers!
Ignorance is definitely not bliss!

*PM asking for help will be ignored*
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:




Views: 4404 | Replies: 3
Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2010 DaniWeb® LLC