Jump to content

MYSQL problem


robert_gsfame

Recommended Posts

if i have 3 checkboxes

-Switzerland

-Australia

-Brazil

 

and mysql will be based on what has been chosen,

 

if user chose Australia, so query will be

SELECT name FROM table1 WHERE country='Australia'

 

How bout if he chose 3 countries at the same time, how the query will be so that the output will be all name who lives in Australia, All name who lives in Brazil and all name who lives in Switzerland ??

 

thx

 

Link to comment
https://forums.phpfreaks.com/topic/182915-mysql-problem/
Share on other sites

Hi

 

You would need to build it up in php, but easiest would be to use:-

 

SELECT name FROM table1 WHERE country IN ('Brazil','Switzerland')

 

That said one thing to watch out for is duplicate names. OK, not that likely with countries but very likely with town names. As such might be best to have a table of countries, and when you display the drop down list box you display the name but return a value that is the unique id of the country.

 

All the best

 

Keith

Link to comment
https://forums.phpfreaks.com/topic/182915-mysql-problem/#findComment-965439
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.