On the base date it records the seconds online of each user, but it gets type numbers (example): 23631. I would like to convert these numbers in minutes, how do I do it?
<?php
$userstats_a = mysql_query("SELECT * FROM user_st");
while($oi = mysql_fetch_assoc($userstats_a)){
?>
<?php echo $oi['OnlineTime']; ?>
<?php } ?>