Help for this page

Select Code to Download


  1. or download this
    # Given $record
    my %record;
    @record{ qw/account address info/ }
    ...
    ($record{'account'}) = $record{'account'} =~ /^(\d+)$/ 
        or die 'Bad Account ID';    # detaints, too
    # verify the rest