In today’s web, its much better to use x hour ago, day ago , month ago , a year ago etc. CodeIgniter has a built-in function in date_helper that allows you to convert any date/time to “xx Time ago” style, its called timespan() it takes 2 arguments the first one is the date/time you want to convert to “time ago style” and the second one should be current date time, below is an example show you how to use CodeIgniter timespan function
First you will need to load the date helper
Now lets use the function in any of our controllers
That will outputs something like
Note that 1326927423 is a UNIX date format, see this page to learn about date formats and how to convert them.