in reply to Re: pushing
in thread pushing

use strict -w; doesnt do anything!!

Replies are listed 'Best First'.
Re: Re: Re: pushing
by davorg (Chancellor) on Dec 30, 2000 at 18:48 UTC

    I think you'll find they do if you read your error log!

    Try adding

    use CGI::Carp qw(fatalsToBrowser);

    to the script.

    --
    <http://www.dave.org.uk>

    "Perl makes the fun jobs fun
    and the boring jobs bearable" - me

Read again, carefully this time
by dws (Chancellor) on Dec 31, 2000 at 11:22 UTC
    This problem is a great example of why use strict is such a lifesaver. But perhaps lhoward was overly subtle. He provided a corrected code fragment without calling attention to the correction.

    Read his code again, carefully. If necessary, copy/paste it into a file and diff it against your source.

    If you're already doing use strict and aren't getting any error messages, then there's a different type of programming lesson waiting for you as when you compare the code snippets.