|
|
sybperl-l Archive
Up Prev Next
From: "Sabherwal, Balvinder (MBS)"
<Balvinder dot Sabherwal at mortgagefamily dot com>
Subject: problem with the script
Date: Jan 8 2002 2:39PM
Guru's
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
Bal.
The script is as
#!c:/perl/bin/perl.exe
require('cgi-lib.pl');
push (@INC,'/cgi-bin');
&ReadParse;
print "Content-type: text/html\n\n";
## Initializations Steps
use Getopt::Std;
use Sybase::CTlib;
use CGI ':all';
$startloc="e:/it support services/db architecture/sybase/sysmon-webdb";
$app = $in{"app"}; ## App Name
$yr = $in{"yr"}; ## Data Year
$dtdy = $in{"dtdy"}; ## Data Day
print<<"_END_";
Test
Test
_END_
;
When this is called from the web server it only sends back part of the html
code to the web server as
Test
Test
|