For some strange reason the mobile version of this site doesnt allow me to send messages. If i got ur msg rite, it was about creating the most recent activities. I assume u already knw ur database enuf to make a table 4 it.
forgive me if i didnt get sum mysql functions ryt. I use PHP Doctrine for managing databases in all my projects now, im already used to creating models and yaml schemas sorry bt u get the idea though.
PHP Code:
$sql = "SELECT * FROM user_activities ORDER BY act_time DESC LIMIT 5";
$query = mysql_query($sql);
if(mysql_num_rows($query) > 0)
{
while($results = mysql_fetch_array($query)){
$user = getnick_uid($results['user_id']);
echo "{$user} {$results['action']} @ {$results['act_time']}<br/>";
}
}else{
echo 'wtf! No activities? Boring site!';
}
Comment