Do you mean SELECT yr1, yr2,... ?
If thats your Q... yeah if you want to retrieve those values you have to ... or if you have no use with those value u can just ignore. them
$year = $_GET['year'];
$query1 = mysql_query("select Make from MAKE where
((yr1=='$year') || (yr2=='$year'))")
or die(mysql_error());
This retrieves Column Make from MAKE of a row(s) that satisfies your condition
$year = $_GET['year'];
$query1 = mysql_query("select * from MAKE where
((yr1=='$year') || (yr2=='$year'))")
or die(mysql_error());
This retrieves all columns from MAKE of a row(s) that satisfies your condition
Good Luck
TommYNandA