in reply to running a script from perl
Hope this helps, if not post a bit more of your code#!/usr/bin/perl -w use strict; use CGI; use CGI::Carp qw(fatalsTo Browser); my $page = new CGI; print $page->header() print $page->start_html(); ... .. . print $page->end_html();
|
|---|