1 #the dumb terminal webmysql module 2 #mt 16/11/2003 2.4 moved version into this module 3 package DTWebMySQL::Main; 4 BEGIN { 5 use Exporter(); 6 our %form; #data from the previous page 7 our $error = ""; #error flag 8 our $version ="2.7"; #version of this software 9 @ISA = qw(Exporter); 10 @EXPORT = qw(%form $error $version); 11 } 12 ############################################################################### 13 return 1; 14 END {} 15