I have what shlould be a simple script that I am writing for
our intranet at work. I am Posting information, it processes
it, then it is supposed to show the output on the screen.
Instead I am getting a dialog box asking to save the file.
I am unable to use CGI due to the fact that it is not loaded
on the server, and I do not have enough room in my personal
directory for a local copy with all the other stuff I have in
there. Here is the part in question:
print "Content-type:test/html\n\n";
print "<HTML>\n";
print "<BODY>\n";
while (<INPUTFILE>) {
if (/^(.*?)$tool_number(.*)$/{
($continue) =1;
}
if (/^(.*?)$end_tool(.*)$/ {
($continue) = 0;
}
if ($continue ==1){
print "some stuff\n";
}
}
I would include the rest of the code.....but I'm not a very
good programmer, and It would get hacked to heck. Plus it is
related to my work....gotta love those "created at work"
clauses.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.