you forgot ` here around date. date is reserved word in mysql,
if you want to use it as column name place ` around it.
EDIT
also you have extra space remove it
$note = "SELECT * FROM notify WHERE seeker='".$_SESSION['email']. "'
AND donor='".$email."' ORDER_BY `date` LIMIT 1";