in reply to CGI Errors in HTML
If you are using the CGI module, you can try instantiating a CGI object and running the script from the command line.
When running the script from the command line, it will as you to enter name/value pairs in the format name=value. Enter all appropriate name/value pairs and hit cntl-d (cntl-z on Win32 systems) and the script will continue execution. Any errors will be directed to your terminal window.#!/usr/bin/perl -wT use strict; use CGI; my $query = new CGI;
Cheers, Curtis
|
|---|