in reply to best way to handle Subroutine redefined warning
#!/usr/bin/perl -T use SelfLoader; use CGI qw/:standard/; use CGI::Carp 'fatalsToBrowser'; use DBI; use strict; use warnings; print "Content-Type:text/html\n\n"; print "this is a test\n"; __DATA__ sub redirect { # code for redirect will go here } exit 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: best way to handle Subroutine redefined warning
by chromatic (Archbishop) on Feb 25, 2011 at 08:15 UTC | |
by Anonymous Monk on Aug 30, 2012 at 17:00 UTC |