Jump to content

timestamp


Jaynesh

Recommended Posts

Hello

 

Ive got a table

post(post_id, user_id, post, timestamp)

 

when a post is outputted I want it to display how many minutes/hours ago it was posted.

 

How would I do this?

I'm assuming it requires math?

 

For e.g

 

This is my post

Submitted 2 hours and 32 minutes ago

Link to comment
Share on other sites

You could get the difference in seconds, and use basic math to go from there.

 

SELECT `content`, `date`, UNIX_TIMESTAMP() - UNIX_TIMESTAMP(`date`) as `difference` FROM `table`

 

Once extracted, `difference` will hold the amount of seconds between now and the post. Divide by 86400, you get days. Divide remainder by 3600, you get hours. Divide that remainder by 60, minutes. The final remainder is seconds.

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.