View Single Post
  #3  
Old 01-19-2015, 03:26 AM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 88,827
Kyttias is on a distinguished road
Default

Thanks for all the help over aim, HoF! I really appreciate it and I learned a lot of new things.

For anyone interested in more things to modify their stats page with, this will list the 10 newest users:

PHP Code:
/* Newest Users */
        
$document->add(new Comment("<h4>Newest Users</h4>"FALSE));
        
$newest_ten_users $mysidia->db->select("users", array("username"), "1 ORDER BY username DESC LIMIT 10");
        while(
$username $newest_ten_users->fetchColumn()){            
            
$n_order++;     
            
$document->add(new Comment("<b>{$n_order}.</b> <a href='../../profile/view/{$username}'>{$username}</a>"));
        } 
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.

Last edited by Kyttias; 01-19-2015 at 04:32 AM.
Reply With Quote