From: Michael Peppler <mpeppler at peppler dot org>
Subject: Re: problem with the script
Date: Jan 8 2002 3:45PM
Sabherwal, Balvinder (MBS) writes:
> I am having a problem with one of my script. It is printing only part of the
> html statements and not all of them. Can anyone point out the problem here.
> Thanks
First, Ashu is right that this list is primarily for perl<->sybase
related problems. Yours is a completely different issue (although
admittedly you are trying to build some sort of Sybase monitor if I
read your code correctly).
However:
>
> #!c:/perl/bin/perl.exe
>
> require('cgi-lib.pl');
> push (@INC,'/cgi-bin');
>
> &ReadParse;
Don't use cgi-lib.pl - it's completely outdated.
Instead use:
use CGI;
my $query = new CGI;
print $query->header;
see perldoc CGI for details.
>