#!perl
##***************************************************##
## MAIN ##
##***************************************************##
require "setup.cfg";
require "html.pl";
&parsedata
if ($INPUT{'signup'}) { &join; }
else {&html_home; }
exit;
someone explain what i'm doing wrong plz....
i have my globals in setup.cfg
i have all my html output in html.pl
i want the script to add new members to database if signup form is submitted
else i want the script to print out my homepage
----------------------------------------------------------------------
ok.. it all works fine BUT
i can't use ( use strict; )
says it didn't return correct headers or something
does anyone see a problem in my main code here?
tx
RD