in reply to Hash Problem
I prefer the OO version, but have not used it to keep the code looking as similar to yours as possible.#!/usr/bin/perl use strict; use warnings; use CGI ':all'; use CGI::Carp qw(fatalsToBrowser); #assign variables my $loginame= param('username'); my $p_word=param('password'); print header(); print start_html(); print "***$loginame AND $p_word***"; print end_html(); exit;
|
|---|