vampke Posted November 6, 2007 Share Posted November 6, 2007 Hi guys, I need a little help with this script i'm working on. I get the date stored in a mysql table (printing it in html returns: 2007-11-10) Now I don't need to print that date, but I want to print the day AFTER that day (so in this example 2007-11-11) I'm stuck here! calling $date +1 returns "2008" What's the right way? Thanks for helping! Link to comment https://forums.phpfreaks.com/topic/76216-solved-date-adding/ Share on other sites More sharing options...
Azu Posted November 6, 2007 Share Posted November 6, 2007 Instead of select date from table Use select date + interval 1 day from table And voila it will be the day after. And of course you can replace the 1 with another number, or day with a different unit of time (E.G. second) and negative value to make it go back in time instead of ahead. Link to comment https://forums.phpfreaks.com/topic/76216-solved-date-adding/#findComment-385726 Share on other sites More sharing options...
vampke Posted November 6, 2007 Author Share Posted November 6, 2007 great stuff! thanks a bunch! Link to comment https://forums.phpfreaks.com/topic/76216-solved-date-adding/#findComment-385730 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.