Rolf Rost: Formmailer aus Selfhtml

Beitrag lesen

hi,

-------> Dankeseite an Browser senden:

print "Location: $returnhtml\n\n";

das funktioniert nicht auf jedem Server. Besser ists so:

Redirection

sub redir{
        my $url = shift;
        print "Status: 302 Moved\n";
        print "location: $url\n\n";
}

Siehe auch http://i-netlab.de/hints/redirect.html

Rolf