hI, i want to make a query to return the results of all matches that is in between the 2 chosen dates.
HERE IS THE SCRIPT FOR MY SEARCH FORM PAGE:
First Year:
<SELECT name="SearchYear1">
<OPTION value="All">ALl
<CFOUTPUT QUERY="Searchdyno">
<option value="#FirstYear#">#FirstYear#</cfoutput>
</select> <br>
Last Year:
<SELECT name="SearchYear2">
<OPTION value="All">ALl
<CFOUTPUT QUERY="Searchdyno">
<option value="#lastyear#">#lastyear#</cfoutput>
</select>
How do i write the query script in the cf file to return the result of all matches that are within (between) the first year and 2nd year ??
PLEASE HELP
THANK YOU
HERE IS THE SCRIPT FOR MY SEARCH FORM PAGE:
First Year:
<SELECT name="SearchYear1">
<OPTION value="All">ALl
<CFOUTPUT QUERY="Searchdyno">
<option value="#FirstYear#">#FirstYear#</cfoutput>
</select> <br>
Last Year:
<SELECT name="SearchYear2">
<OPTION value="All">ALl
<CFOUTPUT QUERY="Searchdyno">
<option value="#lastyear#">#lastyear#</cfoutput>
</select>
How do i write the query script in the cf file to return the result of all matches that are within (between) the first year and 2nd year ??
PLEASE HELP
THANK YOU