View Single Post
Old 05-10-2009, 05:48 PM   #2 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,425

office politics will become famous soon enough

Default Re: HELP - php mysql db search from form input

you'll need to build a query string based on the input provided.

for the 3 inputs you want the query string to be

select * from car_inventory where make = 'ford' and model = 'focus' and year = 2002



for just fords

select * from car_inventory where make = 'ford'
office politics is offline