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! Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
vampke Posted November 6, 2007 Author Share Posted November 6, 2007 great stuff! thanks a bunch! Quote Link to comment 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.