How to use PHP countdown timer
I want to add here email notification (auto send email) receive an email every six months but different text SendMail 2023-04-28 12:00:00 "Wait more" SendMail 2023-11-28 12:00:00 "and more"
<!doctype html>
<html>
<head>
<title>PHP Countdown Timer</title>
</head>
<body>
<?php
$diwali = strtotime("2027-11-29 12:00:00");
$current=strtotime('now');
$diffference =($diwali-$current);
$days=floor($diffference / (60*60*24));
echo "$days Your wine is ready";
?>
</body>
</html>