I am using PHP and have a variable number which will be dynamic and I want to create a date on its behalf.
$number = 4;
I can create the date after one day by
echo date('c', strtotime('+1 day'));
what if i want to create a date after certain number of days i.e $number of days.
How can I create the date in the behalf of $number.
If I understand you properly then you can just do something like this:
if this is not what you want to do then please clarify your question