Hi micro_learner,
it seems to point to your db connection statement. Check your web server logs, this will also contain any errors found.
may i suggest aswell, you get into the habit of use strict variables, this will help you out a lot in the long run, ie
use DBI;
use strict;
One thing in your post i find strange is that you say 'the html before the actual CGI starts works but does not display the html after CGI part in the script', presumably here you mean the DBI and not CGI, as the whole perl script is considered to be CGI.
hope this helps
Peewee
Main Topics
Browse All Topics





by: ozoPosted on 2005-05-24 at 18:09:42ID: 14073990
use CGI::Carp qw(fatalsToBrowser);
should let you see the die error. That may help you diagnose the problem.