1c7d1d82aa
git-svn-id: http://yolanda.mister-muffin.de/svn@218 7eef14d0-6ed0-489d-bf55-20463b2d70db
50 lines
1.3 KiB
Perl
50 lines
1.3 KiB
Perl
require "functions.pl";
|
|
|
|
#create or resume session
|
|
CGI::Session->name($session_name);
|
|
$query = new CGI;
|
|
$session = new CGI::Session;
|
|
|
|
@userinfo = get_userinfo_from_sid($session->id);
|
|
|
|
@page = get_page_array(@userinfo);
|
|
|
|
$page->{frontpage} = [''];
|
|
|
|
if($query->param('information'))
|
|
{
|
|
$page->{'message'}->{'type'} = "information";
|
|
$page->{'message'}->{'text'} = $query->param('information');
|
|
$page->{'message'}->{'value'} = $query->param('value');
|
|
}
|
|
elsif($query->param('error'))
|
|
{
|
|
$page->{'message'}->{'type'} = "error";
|
|
$page->{'message'}->{'text'} = $query->param('error');
|
|
$page->{'message'}->{'value'} = $query->param('value');
|
|
}
|
|
elsif($query->param('warning'))
|
|
{
|
|
$page->{'message'}->{'type'} = "warning";
|
|
$page->{'message'}->{'text'} = $query->param('warning');
|
|
$page->{'message'}->{'value'} = $query->param('value');
|
|
}
|
|
|
|
|
|
#prepare query
|
|
my $sth = $dbh->prepare(qq{select text, count from tagcloud }) or die $dbh->errstr;
|
|
|
|
#execute it
|
|
$sth->execute() or die $dbh->errstr;
|
|
|
|
#get every returned value
|
|
while (my ($text, $count) = $sth->fetchrow_array())
|
|
{
|
|
#push the new value to the $page->tagcloud array
|
|
push @{ $page->{tagcloud}->{tag} }, { text => [$text =~ / / ? "\"$text\"" : $text], count => [$count] };
|
|
}
|
|
|
|
#finish query
|
|
$sth->finish() or die $dbh->errstr;
|
|
|
|
print output_page();
|