Carl wrote: > How can I keep > the values in the %values hash so the program doesn't > constantly access > the information from the database?
our %values; Or make it an class so that you create an object in the calling program, i.e. my $tools = new Tools; $tools->table_value(...); - Mark. _______________________________________________ Perl-Unix-Users mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
