# Generate hidden fields from previous form # List all field names here @keepers = qw( first_name last_name address ); # Flip through %fields hash where you have inputs # stored, and stick them into a hidden fields foreach (@keepers){ $hidden.=" \n"; } # Stick the $hidden variable anywhere inside the
# tags of the next page #### # For this kind of operation, I like # to use a fast tie hash, especially # if there is a lot of traffic use DB_File; $records = tie %stuff, 'DB_File', "entries.dat", O_CREAT|O_RDWR,0666;