in reply to Re^2: Do not undertand this error message
in thread Do not undertand this error message

if you change this
my ( $player, $playerphone, $entry, $message, $memberid, $email, $part +ner, $partnerphone, $section, $level, $street, $city, $state, $zip, $ +party, $guests, $payment );
to this
my ( $player, $playerphone, $entry, $message, $memberid, $email, $part +ner, $partnerphone, $section, $level, $street, $city, $state, $zip, $ +party, $guests, $payment ) = ("","","","","","","","","","","","","", +"","","", "");
does it go away?

Update:
Apologies, meant to also say to comment out the reassignment.

Update::
Added $payment

Replies are listed 'Best First'.
Re^4: Do not undertand this error message
by gellyfish (Monsignor) on Apr 29, 2005 at 13:24 UTC

    If one were less inclined to type that could be written as:

    my ( $player, $playerphone, $entry, $message, $memberid, $email, $partner, $partnerphone, $section, $level, $street, $city, $state, $zip, $party, $guests ) = ('') x 16;
    But I don't think that will necessarily help because all of these variables are being assigned to in the next few lines.

    /J\

      If one were truly less inclined to type, one could cut and paste :)

      I've updated my post with your latter observation, which was my original intent.
        Hi,

        I'm not sure if this makes a difference. I noticed for a while that the message is appearing randomly. I'll run the script 3 or 4 times - no problem. Then, I try again and the message appears.
        Hello,

        I'm sorry, your idea didn't work. Now I'm getting an Internal Server error message.