How could I decrement the date in the text box by 1 day? The value of the dateschedule is 2016-04-02. The output should be 2016-04-01 because I want to decrement it by 1 day. I tried this code:
if(isset($_REQUEST["submit"]))
{
$dateschedule=security($_POST["dateschedule"]);
echo $new_time4 = date($dateschedule, strtotime('-1 day'));
}