actually I save date in database in varchar format. firstly I retrieve date from databae & store it into $date. now i want to perform addition of 5 days with $date1.
when i search on internet i got this code :
$date = date('Y-m-d', strtotime("+5 days"));
now can you tell me how I insert $date1 value to this code for get expected result.
or even if you have another method then plz tell me. thanks in advance.