in reply to Re: Re: Perl and XML
in thread Perl and XML
No, I'm now talking about CGI 101, you can use a simple
before your print anything else, or something similar but more advanced from one of the CGI modules.print "Content-type: text/plain\n\n";
For simple experimentation, it'd be best to use something like
because then you'll get your Perl error messages in the browser window, too.use CGI::Carp 'fatalsToBrowser';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Perl and XML
by BzBeauty (Sexton) on Mar 16, 2004 at 23:30 UTC | |
by bart (Canon) on Mar 16, 2004 at 23:52 UTC |