Help for this page

Select Code to Download


  1. or download this
     
    my $query = CGI->new;
    my %reg_info = parse_registration_info($query);
    my $success = store_registration_info(\%reg_info, $database_handle);
    
  2. or download this
    my $query = CGI->new; 
    my $registration = OurWebsite::User::Registration->new($query);
    my $success = $registration->store($database_handle);