| | |
Php Mysql : Code for Multiple Field Search
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Feb 2008
Posts: 25
Reputation:
Solved Threads: 1
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
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
php Syntax (Toggle Plain Text)
$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*
*PM asking for help will be ignored*
•
•
Join Date: Feb 2008
Posts: 25
Reputation:
Solved Threads: 1
•
•
•
•
php Syntax (Toggle Plain Text)
$query = "select * from table where home_phone like '%516%' OR work_phone like '%516%' OR mobile_phone like '%516%'";
![]() |
Similar Threads
- Getting Radio Buttons to access Mysql Database (PHP)
- multiple search terms+fulltext search (MySQL)
- Searching multiple fields... (PHP)
- hello and plz help (PHP)
- searching multiple fields (PHP)
Other Threads in the PHP Forum
- Previous Thread: FTP problem
- Next Thread: error_reporting() doesn't seem to work
| Thread Tools | Search this Thread |
apache api array beginner binary body broken buttons cakephp checkbox class cms code cron curl database date date/time display dynamic ebooks echo email error file files folder form forms function functions google href htaccess html image include insert ip javascript joomla limit link list login mail mediawiki menu mlm msqli_multi_query multiple mycodeisbad mysql number oop parameter paypal pdf php phpincludeissue phpmyadmin problem query radio random recourse recursion regex remote script search seo server sessions sms source sp space speed sql static subdomain syntax system table tag tutorial update upload url validator variable vbulletin video web webdesign white wordpress xml youtube







It should work with OR.. But anyway, cheers!