alej469 Posted May 2, 2007 Share Posted May 2, 2007 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! Link to comment https://forums.phpfreaks.com/topic/49672-youtube-style-x-minutes-ago/ Share on other sites More sharing options...
taith Posted May 2, 2007 Share Posted May 2, 2007 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 https://forums.phpfreaks.com/topic/49672-youtube-style-x-minutes-ago/#findComment-243532 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.