Hallo,
kann mir jemand eine einfache, deutsche Dokumention nennen,
wo nachfolgendes erläutert wird?
print $query->header();
print $query->start_html({"title" => $title, "bgcolor" => "#bbccdd"});
print $query->h2($title);
print $query->start_form({"method" => "post"});
print $query->start_table();
print $query->Tr($query->td({"align" => "right"}, "Benutzer:"),
$query->td($query->textfield({"name" => "userid"})));
print $query->Tr($query->td({"align" => "right"}, "Passwort:"),
$query->td($query->password_field({"name" => "password"})));
print $query->end_table();
print $query->p($query->submit({"name" => "new", "value" => "anmelden"}));
print $query->end_form();
print $query->end_html();
Mit höflichem Dank
Ingolf