Gossamer Forum
Home : Products : Gossamer Forum : Development, Plugins and Globals :

Re: [balita] is there tag like newest_user?

Quote Reply
Re: [balita] is there tag like newest_user? In reply to
You can create a new global like "newest_user", and put the following content into it:
Code:
sub {
my $table = $DB->table('User');
$table->select_options("ORDER BY user_registered DESC", "LIMIT 1");
return $table->select( 'user_username' )->fetchrow;
}

Then place the <%newest_user%> tag into the template you want to display.
That's all. Good luck!

Best regards,
Webmaster33


Paid Support
from Webmaster33. Expert in Perl programming & Gossamer Threads applications. (click here for prices)
Webmaster33's products (upd.2004.09.26) | Private message | Contact me | Was my post helpful? Donate my help...
Subject Author Views Date
Thread is there tag like newest_user? zaaron 7511 Mar 30, 2002, 3:03 PM
Thread Re: [zaaron] is there tag like newest_user?
Paul 7428 Mar 31, 2002, 2:05 AM
Thread Re: [Paul] is there tag like newest_user?
zaaron 7420 Mar 31, 2002, 3:26 AM
Thread Re: [zaaron] is there tag like newest_user?
Paul 7403 Mar 31, 2002, 4:01 AM
Post Re: [Paul] is there tag like newest_user?
zaaron 7399 Mar 31, 2002, 4:33 AM
Thread Re: [Paul] is there tag like newest_user?
balita 7286 May 23, 2002, 9:16 AM
Thread Re: [balita] is there tag like newest_user?
webmaster33 7247 May 23, 2002, 10:44 AM
Post Re: [webmaster33] is there tag like newest_user?
balita 7264 May 23, 2002, 10:51 AM
Post Re: [webmaster33] is there tag like newest_user?
shiner 7194 Jun 3, 2002, 1:04 PM
Thread Re: [Paul] is there tag like newest_user?
hoefti 7061 Oct 5, 2002, 7:50 AM
Thread Re: [hoefti] is there tag like newest_user?
Paul 7072 Oct 5, 2002, 8:07 AM
Thread Re: [Paul] is there tag like newest_user?
hoefti 7038 Oct 5, 2002, 8:28 AM
Thread Re: [hoefti] is there tag like newest_user?
Paul 7040 Oct 5, 2002, 8:35 AM
Post Re: [Paul] is there tag like newest_user?
hoefti 7058 Oct 5, 2002, 8:43 AM