Using PHP how i can do this
$today = date("m/d/y"); // showing today
Output 11/18/13
will be saved in mysql as start date
Okay so if i like to add to this start date
30 days ... 60 days ... 90 days or any number of days to be add to $today
and results be still in format m/d/y
Example may explain more what i mean
$today = date("m/d/y"); // 11/18/13
then add 10 days so $expired
should be $today + 10
; in days and results should be 11/28/13
~ thanks