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

Re: [Andy] Global: List where the users come from?

Quote Reply
Re: [Andy] Global: List where the users come from? In reply to
Andy wrote:
HI,

Not quite as simple as that =)

You need something like this: (it WON'T sort by age, I tried - but couldn't get it working)

Code:
sub {

use GT::SQL;

use lib '/path/to/secure_data/lib';

my $NEWDB = new GT::SQL (
def_path => '/path/to/secure_data/defs',
cache => 0,
debug => 0,
subclass => 0
);

my $db = $NEWDB->table('comm_users');
$db->select_options( "GROUP BY prof_birthday","ORDER BY dob_count DESC");
my $sth = $db->select("prof_birthday", "COUNT(*) as dob_count") or die "Query Error: $GT::SQL::error";

my $current = GT::Date::date_get();
my @current = split /-/, $current; # $current[0]

my $ages;
my $back;
while (my ($s, $c) = $sth->fetchrow_array) {

if ($s !~ /^(19|20)\d\d-/) { next; }

my @date = split /-/, $s; # yyyy-mm-dd

my $age = $current[0] - $date[0]; # age of person looking at

if ($ages->{$age}) { $ages->{$age} += 1; } else { $ages->{$age} = 1;}

}


my @entries;
map {
push @entries, { Age => $_, Count => $ages->{$_} }
} sort keys %$ages;


return { age_loop => \@entries }

}


Then call with:

Code:
<%global_name%>

<ul>
<%loop age_loop%>
<li><%Age%> - <%Count%></li>
<%endloop%>
</ul>

Hi Andy,
this global works fine, but I have some wrong entries in my database.
The global prints out this wrong user entries.
So I have users with the age of 108 and 3, 4 and 5 ;-)

Is there a way to print out only entries between the age of 18 and 80 ? to prevent wrong outputs?

Thanks
Matthias

Matthias
gpaed.de
Subject Author Views Date
Thread; hot thread Global: List where the users come from? Matthias70 11648 Dec 23, 2007, 2:54 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11417 Dec 23, 2007, 3:23 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11397 Dec 23, 2007, 3:39 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11424 Dec 23, 2007, 3:47 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11445 Dec 23, 2007, 3:52 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11443 Dec 23, 2007, 3:58 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11441 Dec 23, 2007, 4:03 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11378 Dec 23, 2007, 4:05 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11545 Dec 23, 2007, 4:09 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11418 Dec 23, 2007, 4:14 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11428 Dec 23, 2007, 4:18 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11433 Dec 23, 2007, 4:19 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11390 Dec 23, 2007, 10:57 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Matthias70 11423 Dec 25, 2007, 12:33 PM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11387 Dec 26, 2007, 12:40 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11301 Dec 29, 2007, 12:14 PM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11325 Dec 29, 2007, 12:33 PM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11348 Dec 31, 2007, 6:25 AM
Post; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11297 Dec 31, 2007, 6:30 AM
Thread; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11302 Mar 23, 2008, 6:57 AM
Thread; hot thread Re: [Matthias70] Global: List where the users come from?
Andy 11281 Mar 23, 2008, 7:30 AM
Post; hot thread Re: [Andy] Global: List where the users come from?
Matthias70 11292 Mar 23, 2008, 8:37 AM