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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.