can someone possibly help me out and tell me why this is returning no results when there are several items that contain dates within what i have specified.
/* Monthly enrollment search */
$query = "Select dm_id, dm_list, dm_phone, dm_email, dm_sponsor_id, dm_start_date
FROM distributor_main
ORDER BY dm_sponsor_id DESC
WHERE DATE_FORMAT(dm_start_date, '%YYYY-%MM-%DD') >= '2003-11-01' && <= '2003-11-30'";
display_search_results($query);