How do I make the timestamp string be displayed as something that is actually readable / understandable? Yes, I have looked on google, here and a couple other places, but I am not seeing anything too specific or I am just not understand. Thank you for your understanding, helping me out and not being too critical.

Here is what I have:

In the database:
timestamp int(11) unsigned

and it inserts it like this:
1252386167

Using Php to display Last Active it displays it like this:
1252410826

Thank you,

Recommended Answers

All 3 Replies

Here is a customised function I use:

function EpochDate($timestamp, $format = "Y-m-d H:i:s")
{
	$final_timestamp = date($format, mktime(0 , 0, $timestamp, 1, 1, 1970));
	return($final_timestamp);
}

you would then call EpochDate("1252386167") You could call EpochDate("1252386167", "d m Y H:i") or whatever suits for a different date format

thank you..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.