thanks for your assistance, but it isn't working yet.
You said: "SELECT * FROM table WHERE field BETWEEN '$item1' AND '$item2'"
I tried this:
$query = "SELECT * FROM mytable WHERE myfield BETWEEN '$item1' AND '$item2'";
$result = mysql_query($query);
It does occasionally pull out some records, but the results seem almost to be random, favoring the '$item2' end of the query.
Also, in my million PHP/MySQL books and online references, there does not appear to be any info in the use of BETWEEN in a SELECT statement. Can you point me toward anything that will clarify this for me, please.
Many thanks.