Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
#
# formmail.pl
# aufgerufen -simpel dargestellt - als
# formmail.cgi?action=edit
#
use CGI qw/:standard);
if (param('action' eq 'submit') { &submit; }
else { &edit }
sub edit {
print qq{<html><head><title>lala</title></head>};
# noch ein bisschen was fuer die grafik...
# dann kanns weitergehen:
print qq{<p>name: }.param('name');
print qq{email: }.param('mail')."</p>";
#etc... *zu muede um alles aufzuschreiben!