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, Quote 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")); Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/203804-date-computation/#findComment-1067438 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.