I am attempting a search between two values with an or condition but can not seem to get this to work. Here is my search:
$search = mysql_query("SELECT * FROM `data` WHERE (`Required ACT` between ($act1) and ($act2) OR (`Required SAT` between ($sat1) and ($sat2))");
It works fine when alone but when the "or" is intorduced it break.
Thanks!