What typically causes the following type of error in a CGI?
-----------------------------------------------------------
Use of uninitialized value in concatenation (.) 
at D:\inetpub\whatever\census\myscript.cgi line 272.
-----------------------------------------------------------
        

Line 272 is simply this:
-----------------------------------------------------------
272 print <<"END_OF_HTML";
# some HTML here (line 273)
# some more HTML here (line 274)
# blah blah blah (etc.)
END_OF_HTML 
-----------------------------------------------------------


I didn't intentionally concatenate anything. There's another
block prior to this where I am printing out table rows, would
it have anything to do with something like:
-----------------------------------------------------------
my $i;
for($i=0; $i<=20; $i++) { # Print rows until we hit 20
 if($i == 0) { next; }    # Skip the "zero" row
 print <<"END_OF_HTML";
 <tr>
  <td> This is row $i </td>
  <td> This is another column in row $i </td>
 </tr>
END_OF_HTML
}
-----------------------------------------------------------






Scot Robnett
inSite Internet Solutions
[EMAIL PROTECTED]
http://www.insiteful.tv

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.325 / Virus Database: 182 - Release Date: 2/19/2002


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to