andz Posted June 3, 2010 Share Posted June 3, 2010 Hi, I know to others, this is a simple problem. I have here a scenario where users have to choose on the options: single and annual. for the single... user will get to enter the start and end date for the annual... user will only have to enter the start NOTE: for the annual, it's being calculated as 365 days my problem is this, on the annual, is there a way to determine / calculate date base only on the start date entered by the user? let's say, he enters: 26/6/2010 ... how will i perform calculations on that so that the end date is exactly 365 days. i need results in dd/mm/yyyy if anyone could help, that'll be great. thanks, Link to comment https://forums.phpfreaks.com/topic/203804-date-computation/ Share on other sites More sharing options...
dabaR Posted June 3, 2010 Share Posted June 3, 2010 Try: date('Y-m-d', strtotime("$date + 365 days")); Link to comment https://forums.phpfreaks.com/topic/203804-date-computation/#findComment-1067411 Share on other sites More sharing options...
andz Posted June 3, 2010 Author Share Posted June 3, 2010 thanks for the solution. very much appreciated. we're trying to solve much complicated problems and forgot of the basic. godspeed Link to comment https://forums.phpfreaks.com/topic/203804-date-computation/#findComment-1067438 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.