![]() |
|< 1 2 >| | ![]() |
17 Einträge, 2 Seiten |
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
#! /usr/bin/perl -w
use strict;
use CGI qw(:standard :netscape escapeHTML);
use CGI::Carp qw(fatalsToBrowser);
use WebDB;
print header (),
"<script LANGUAGE=\"JavaScript\">
<!-- Begin
function go(loc) {
window.location.href = loc;
}
// End -->
</script>",
start_html (-title => "Terminserie",
-bgcolor => "white");
eingabe_formular_anzeigen(WebDB::trim (param ("link")));
print end_html ();
exit (0);
sub eingabe_formular_anzeigen{
my $radio = shift;
print $radio;
print fieldset(legend("Termin"),
radio_group (-name => "optionsschalter",
-values => ["a"],
-labels => {"a" => "Einzeltermin",},
-onClick=>"go('http://127.0.0.1/cgi-bin/prod_reg16.pl?link=one');"
),
"<br>",
radio_group (-name => "optionsschalter",
-values => ["b"],
-labels => {"b" => "Täglich"},
-onClick=>"go('');"
),
"<br>",
radio_group (-name => "optionsschalter",
-values => ["c"],
-labels => {"c" => "Wöchentlich"},
-onClick=>"go('');"
),
radio_extra($radio),
);
}
sub radio_extra{
my $radiobutton = shift;
if ($radiobutton == /one/){
textfield(-name => "datum")
}
}
![]() |
|< 1 2 >| | ![]() |
17 Einträge, 2 Seiten |