Trước hết, bạn nên sử dụng các câu lệnh đã chuẩn bị sẵn như sau:
$note = "SELECT *
FROM notify
WHERE seeker=:seeker AND donor=:donor
ORDER BY `date` DESC
LIMIT 1";
$st = $conn->prepare($note);
$st->execute(array(
':seeker' => $_SESSION['email'],
':donor' => $email,
);
Không có trình giữ chỗ, bạn vẫn có thể sử dụng SQL injection.
Thứ hai, bạn không thể so sánh một chuỗi với một số nguyên theo cách này:
$now = $time; // string
$old_date = strtotime($found['date']); // integer
$dateif = $now - $old_date; // dunno?
Bạn nên so sánh táo với táo:
$seven_days_ago = strtotime('-7 days');
$old_date = strtotime($found['date']);
if ($old_date > $seven_days_ago) {
echo "difference between tow dates is less than 7 days";
} else {
echo "the difference between tow dates is 7 days or more";
}