Just convert your dates to a standard format (ie Unix Timestamp) and then just compare them normally:
if (($date2 > $date1) && ($date2 < $date3)) {
// do something
}
see:
http://www.php.net/manual/en/ref.datetime.php
for more information on date conversions and formatting.
-- Rich Rijnders
-- Irvine, CA US