I would like to Select time edited by xxx to show them on my custom page
i've tried
PHP Code:
$query = "SELECT dateline FROM post WHERE postid = 2";
$result = mysql_query($query);
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo " {$row['dateline']}";
}
but it shows something like 1160411620 not Last edited by vietkieu_cz : Today at 5:16pm. Reason: example time
thanks