Jump to content

[SOLVED] date adding


vampke

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.