Jump to content

YouTube style "x minutes ago"


alej469

Recommended Posts

 

Just a quick one: I'm a complete novice with unix timestamps. How could I display the time a user registered in minutes (from a unix timestamp) for users that registered less than an hour ago? I'm basically hoping to do a YouTube style thing like you get on the comments, which displays the number of seconds ago the comment was made if it was under a minute ago, the number of minutes it was made if it was under a hour ago etc... Is this going to be complicated? Cheers for any help!  ;D

Link to comment
Share on other sites

obviousally this will always return 0 minutes... but its only sleeping for 10 seconds...just pull time1 from the database...

<?
$time1=time();
sleep(10);
$time2=time();

$dif=$time2-$time1;
$min=0;
while($div>=0){
$min++;
$dif-=60;
}
echo "$min minutes ago"
?>

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.