View Single Post
  #1  
Old 01-20-2011, 12:23 PM
Kaeliah's Avatar
Kaeliah Kaeliah is offline
Premium Member
 
Join Date: Sep 2010
Location: Pennsylvania, United States
Posts: 485
Gender: Female
Credits: 33,399
Kaeliah will become famous soon enough
Send a message via AIM to Kaeliah Send a message via MSN to Kaeliah
Default Newest Member Recognition Mod [by Kae]

Newest Member Recognition Mod
By Kaeliah


Modification TOS
**Note that there is no viewable credit required for this mod**

I believe it was enddayne who suggested this Mod. It's just a small code snippet, so here it is.


PHP Code:
$query "SELECT * FROM ".$prefix."users ORDER BY membersince DESC LIMIT 1";
$result mysql_query($query);
$num mysql_numrows($result);
$i=0;
while (
$i $num) {
$username=@mysql_result($result$i"username");

$article_content $article_content."<br>Please Welcome our newest user, <a href='profile.php?user=".$username."'>".$username."</a> ";
$i++;
}
// Newest Member Recognition Modification Snippet by Kaeliah of Mysidia Adoptables 
Instructions: This code snippet is meant to be placed near the end of the stats.php page, just before the...

Code:
// **********************************************************************
// Begin Template Definition
// **********************************************************************
... however it can be placed elsewhere IF you know what your doing!!

That's pretty much it! Enjoy!

Last edited by Kaeliah; 04-02-2011 at 01:21 AM.
Reply With Quote