Jump to content

get the date how long it get post


mikhell

Recommended Posts

I try to get how long my message was sent with this...

 

        $Now						= strtotime ("now");
$dateEnvoi					= $fetchDiscussion['dateEnvoi']; //my date from my DB
$timeEnvoi					= mktime($dateEnvoi);
$TempsEnvoi					= $dateNow - $dateEnvoi;

 

and it try to get how long it was post ... same thing as on facebook... like the 26 minutes ago from FB how can i do it ?

 

Link to comment
Share on other sites

It all depends on how the data in the database is stored as how I can help you proceed.

 

If it is stored as a DateTime use this

// If it is stored as a DateTime use this
$stored_date = strtotime($fetchDiscussion['dateEnvoi']);
$time_diff = time() - $stored_date;
// If stored as a unix timestamp use this
$time_diff = time() - $fetchDiscussion['dateEnvoi'];

Then use PHP date function to display the date correctly.

http://php.net/manual/en/function.date.php

 

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.