"Fossies" - the Fresh Open Source Software Archive

Member "webmysql-2.7/cgi-bin/webmysql-2.7/DTWebMySQL/Main.pm" (12 Feb 2008, 419 Bytes) of package /linux/www/old/webmysql-2.7.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "Main.pm" see the Fossies "Dox" file reference documentation.

    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