I am fetching date from database and stored it in a variable called $lastRequest[1]
. Now I need to add certain number of days which are stored in variable $licChkFreq
to the date stored in $lastRequest[1]
.
I am using this code:
$nextRequest=$newExp = strtotime(date("Y-m-d", strtotime($lastRequest[1])) . " +".$licChkFreq." day");
$nextRequest=date("Y-m-d",$nextRequest);
Try the following, this should give you what you need.
This is the code I tested with