Ah, good call. I forgot that NOW() returns a date and time stamp, so I changed the code to this:

Code:
SELECT Title, Request, StartDate FROM `Requests` WHERE CURDATE() >= StartDate AND CURDATE() <= DATE_ADD(StartDate, INTERVAL 5 DAY)


This seems to return the desired result. Thanks for the brain jog.