in reply to CGI and DBI
If that works in the browser, *then* move on to trying to get the database connection working.#!C:\Perl\bin\perl.exe -wT use strict; use DBI; use CGI qw/:standard/; use CGI::Carp qw/fatalsToBrowser/; display_page("Got here!"); #routine to display any messages generated sub display_page { my $message = shift; print header, start_html, p( $message ), end_html; }
|
|---|