Jump to content

Insert time minus one hour


slanoss

Recommended Posts

I insert a time value using the following code

 

 

$ti= ( !empty($_POST['time']) ) ? "'{$_POST['time']}'" : 'NULL'; 

 

I want to insert a second time value into a differen column which would be the same time minus 1 hour

 

something along the lines of :

 

$ti2= ( !empty($_POST['time']) ) ? "'{$_POST['time'] -1 hour}'" : 'NULL'; 

 

What would be the correct way to do it

Link to comment
Share on other sites

In my original I have

Insert into table1 (time) values ($ti);

which works correctly (no quotes round $ti)

 

I have put 

insert into table1 (time, time2) values ($ti, $ti - interval 1 hour );

But it doesn't work, NULL is inserted into time2 not time minus 1 hour

 

Any ideas , thanks.

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.