in reply to Get your script warnings on the page it generates

why don't you catch'n display your warnings like this :
$SIG{__WARN__} = sub { print "<HR><B>Warning : </B>$_[0]<HR>"; };

Replies are listed 'Best First'.
Re: Re: Get your script warnings on the page it generates
by BooK (Curate) on Jan 23, 2001 at 00:12 UTC

    This one is probably the best way to do it. I can save the warnings into a scalar for later use...

    If only I had toroughly read Amelia... Actually, the only problem really is that it works only with 5.6. (As if my script didn't already use 5.6 specific stuff already!)

    Great, I'll do this and share! Thanks!