I want to create a webpage which will automatically send an email before 2 days.
<form action="try.php" method="post">
<p>Date From : <input type="date" name="date1" /></p>
<p>Date To: <input type="date" name="date2" /></p>
<input type="submit" name="submit" value="Submit" />
</form>
<?php
// echo("First name: " . $_POST['firstname'] . "<br />\n");
echo("Last name: " . $_POST['lastname'] . "<br />\n");
$date1Timestamp = strtotime($date1);
$date2Timestamp = strtotime($date2);
//Calculate the difference.
$difference = $date2Timestamp - $date1Timestamp;
echo $difference;
?>