I have a problem which I haven't been able to find any answers to online. I believe it's quite simple. I have a table with a "age"-row (with username age's), and I want to select and display every value higher than X (the age.). I use this string: $query = "SELECT xxx, yyy, zzz FROM mytable WHERE age > 20; When I do this, I only get values HIGHER THAN 20 , and what I want to do is run a query where I get every value that equals 20 OR higher. I suppose the query should be something like "> OR = " but that doesn't work. Thanks.
Just solved this myself! The solution was simple, just write ">=" (without the ") instead of ">". (Ii case someone else finds this thread and wants to know.)