#!/usr/bin/perl -w package Net4Constants; use 5.004; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK $Version ); @ISA = qw(Exporter); @EXPORT = qw(); @EXPORT_OK = qw(1); #Server related Constants $Net4Constants::CGIPATH ='/cgi-bin'; $Net4Constants::HomePath ='http://freedom.net4india.com'; $Net4Constants::ShowWarnings = 0; $Net4Constants::MySQLVersion = 3.22; #Net4colors $Net4Constants::firstcolor = '#DFF8FF'; $Net4Constants::secondcolor = '#DDDDDD'; #LIST OF HTML PATHS # Freedom Quest Related $Net4Constants::htmlpathFQForm = "freedom_quest.html"; $Net4Constants::htmlpathFQSuccess = "fqsucc.html"; __END__