Got question. If i make query to server i use something like this:
mysql_query("select * FROM test WHERE car = '$car');
If i make query to server and use two criterions i use something like this:
mysql_query("select * FROM test WHERE car = '$car' and color ='$color');
If i use AND all criterion's must be full filled. But sometimes i dont know second criterion and it wont work. I could use OR but then if i know both criterion's then it wont give me accurate data.
So do i have to make somekind variable between car = '$car' (variable) color ='$color' and use If statement. Something like this- If car = 'all' then variable = OR. So when i dont know car criterion i leave it "All" and i know Color criterion and select it "Blue" then all cars that are blue will be displayed. "All" is like all criterion's.
Any link or tips for this kinda thing would help
Thank you
Hopefully this helps you understand what im trying to do.
Got database where are data about cars. Color column where are car colors. Type column where coupe, suv, sedan. fuel column where are petrol, Diesel, flintstone.
For showing data i made form in html that got 3 dropdown lists and submit button
- Color-all, blue, green, red.
- Type- all, coupe, suv, sedan.
- Fuel- all, Petrol, Diesel, flintstone.
Now when i select
1.color- blue. 2.type- all. 3.fuel- all.
are showed all cars that are blue, doesn't matter if they are suv, coupe, diesel and so on... (flintstone just example)
but when i select
1.color- blue 2.type- coupe 3.fuel- all
and submit
then all fuel type coupes that are blue will be displayed.
I know how to display all data. I know how to display data that fulfill all criterion (using AND). Like
- color- blue 2.type- coup 3.fuel- diesel
Now all blue coupes that are running on diesel will be displayed. But sometimes i dont know if i want to see blue coupes that runs on diesels or petrol. So if i dont know i leave it "all"
Maybe it explains something but ty.