Leser: 1
|< 1 2 3 4 ... 9 >| | 82 Einträge, 9 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use Text::CSV_XS;
use CGI;
my $cgi = CGI->new;
my $csv = Text::CSV_XS->new();
open my $fh, "<", "Auswertung.csv" or die $!;
print $cgi->start_table;
while (my $line = <$fh>) {
my $status = $csv->parse($line);
my @columns = $csv->fields();
print $cgi->Tr( map {
$cgi->td($_)
} @columns;
}
print $cgi->end_table;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>DHL</title>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="33%">
<p align="center">DHL</td>
<td width="33%">
<p align="center">K&N</td>
<td width="34%">
<p align="center">Hellmann</td>
</tr>
<tr>
<td width="33%"> </td>
<td width="33%"> </td>
<td width="34%"> </td>
</tr>
<tr>
<td width="33%"> </td>
<td width="33%"> </td>
<td width="34%"> </td>
</tr>
<tr>
<td width="33%"> </td>
<td width="33%"> </td>
<td width="34%"> </td>
</tr>
<tr>
<td width="33%"> </td>
<td width="33%"> </td>
<td width="34%"> </td>
</tr>
</table>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use Text::CSV_XS;
use CGI;
my $cgi = CGI->new;
print $cgi->header();
my $csv = Text::CSV_XS->new();
open my $fh, "<", "Auswertung.csv" or die $!;
print $cgi->start_table;
while (my $line = <$fh>) {
my $status = $csv->parse($line);
my @columns = $csv->fields();
print $cgi->Tr( map {
$cgi->td($_;)
} @columns);
}
print $cgi->end_table;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!d:/bin/perl-w
use strict;
use CGI qw(:standard);
use CGI::Carp qw(fatalsToBrowser);
use GD::Graph::pie;
use DBI;
my $DBH;
my $STH;
###Datenbankverbindung###
$DBH=DBI->connect("DBI:CSV:Auswertung=d:/Programme/Apache Group/Apache/Apache2/cgi-bin")
or die "Konnte keine Verbindung zur Datenbank herstellen!$!\n";
$STH=$DBH->prepare("SELECT * FROM Auswertung")
or die "Konnte SQL-Statement nicht bereitstellen!$!\n";
$STH->execute()
or die "Ausführen nicht möglich!$!\n";
my @werte;
my @res;
while (@werte=$STH->fetchow_array();{
push @res, @werte;
}
$STH->finish();
$STH->disconnect;
my @data=(
[$res[0],[$res[3],[$res[6],
[$res[1],[$res[4],[$res[7],
[$res[2],[$res[5],[$res[8]
);
my $my_graph=GD::Graph::pie->(new(300,300);
$my_graph->set(
x_label=>´???´,
y_label=>´???´,
title=>´Auswertung´
);
my $format=$my_graph->export_format;
print header("image/$format");
binmode STDOUT;
print $my_graph->plot(\@data)->$format();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use Text::CSV_XS;
use CGI;
my $cgi = CGI->new;
print $cgi->header();
my $csv = Text::CSV_XS->new();
open my $fh, "<", "Auswertung.csv" or die $!;
print $cgi->start_table;
while (my $line = <$fh>) {
my $status = $csv->parse($line);
my @columns = $csv->fields();
print $cgi->Tr( map {
$cgi->td($_;)
} @columns);
}
print $cgi->end_table;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!d:/bin/perl-w
use strict;
use CGI qw(:standard);
use CGI::Carp qw(fatalsToBrowser);
use GD::Graph::pie;
use DBI;
my $DBH;
my $STH;
###Datenbankverbindung###
$DBH=DBI->connect("DBI:CSV:Auswertung=d:/Programme/Apache Group/Apache/Apache2/cgi-bin")
or die "Konnte keine Verbindung zur Datenbank herstellen!$!\n";
$STH=$DBH->prepare("SELECT * FROM Auswertung")
or die "Konnte SQL-Statement nicht bereitstellen!$!\n";
$STH->execute()
or die "Ausführen nicht möglich!$!\n";
my @werte;
my @res;
while (@werte=$STH->fetchow_array();{
push @res, @werte;
}
$STH->finish();
$STH->disconnect;
my @data=(
[$res[0],[$res[3],[$res[6],
[$res[1],[$res[4],[$res[7],
[$res[2],[$res[5],[$res[8]
);
my $my_graph=GD::Graph::pie->(new(300,300);
$my_graph->set(
x_label=>'',
y_label=>'',
title=>'Auswertung'
);
my $format=$my_graph->export_format;
print header("image/$format");
binmode STDOUT;
print $my_graph->plot(\@data)->$format();
1
2
3
4
5
6
7
8
9
10
11
12
while (@werte=$STH->fetchow_array();{
push @res, @werte;
}
$STH->finish();
$STH->disconnect;
my @data=(
[$res[0],[$res[3],[$res[6],
[$res[1],[$res[4],[$res[7],
[$res[2],[$res[5],[$res[8]
);
1
2
3
4
5
6
7
8
while (@werte=$STH->fetchow_array()){
push @res, [@werte];
}
$STH->finish();
$STH->disconnect;
my @data=@res;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!f:/Perl/bin/perl
use strict;
use CGI qw(:standard);
use CGI::Carp qw(fatalsToBrowser);
use GD::Graph::pie;
use DBI;
my $DBH;
my $STH;
### Datenbankverbindung ###
$DBH = DBI->connect("DBI:CSV:Kunden =f:/Apache2/cgi-bin")
or die "Konnte keine Verbindung zur Datenbank herstellen!$!\n";
$STH = $DBH->prepare("SELECT * FROM Kunden")
or die "Konnte SQL-Statement nicht bereitstellen!$!\n";
$STH->execute()
or die "Ausfuehren nicht moeglich!$!\n";
my @werte;
my @res;
### Werte werden zeilenweise ausgelesen ####
while (@werte=$STH->fetchow_array()){
push @res, [@werte];
}
$STH->finish();
$STH->disconnect;
my @data=@res;
### Grafikeigenschaften festlegen ###
my $my_graph = GD::Graph::pie->new(300, 300);
$my_graph->set(
x_label => 'Name',
y_label => 'Bewertung',
title => 'Auswertung Kunden',
y_max_value => 600000,
y_tick_number => 8,
y_label_skip => 2
);
### Ausgabe ###
my $format = $my_graph->export_format;
print header("image/$format");
binmode STDOUT;
print $my_graph->plot(\@data)->$format();
|< 1 2 3 4 ... 9 >| | 82 Einträge, 9 Seiten |