On Tue, Jun 26, 2001 at 02:07:15PM -0400, RDWest Sr. wrote:
: #!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

The code that you have given us looks great.  However, you have not
given us the code that you have in your required files.

If you show us the code in your required files, we may be able to tell
you why 'use strict' is failing.

Also, be sure to try and run your program from the command line, you
can see the errors easier.

  Casey West

-- 
"Heavier-than-air flying machines are impossible."
 -- Lord Kelvin, president, Royal Society, 1895.

Reply via email to