Leser: 1
|< 1 2 >| | 11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
if ( $results->has_missing() || $results->has_invalid() )
{
print $obj->header ( "text/html" ),
$obj->start_html ( -title => "Bestätigung" );
print $obj->h3 ( "Sie haben nix eingegeben! \n" );
print $obj->redirect ( "http://localhost/db/neuer_user.html" );
print $obj->end_html;
exit;
}
QuoteSie haben nix eingegeben!
Status: 302 Moved Location: http://localhost/db/neuer_user.html
1
2
3
4
my $obj = CGI->new();
if ( $results->has_missing() or $results->has_invalid() ) {
print $obj->redirect($url);
}
|< 1 2 >| | 11 Einträge, 2 Seiten |