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

Hello,

I verified whether my values are being passed from the form to the script. And, they are. I know this because I receive a confirmation email with all the values I entered into the form in the email. So all my parameters are working fine.

So I don't know what else it could be.
  • Comment on Re^2: Do not undertand this error message

Replies are listed 'Best First'.
Re^3: Do not undertand this error message
by Transient (Hermit) on Apr 29, 2005 at 13:04 UTC
    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

      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.
Re: Do not undertand this error message
by jonadab (Parson) on Apr 30, 2005 at 11:44 UTC
    ... all my parameters are working fine.

    In that case, I'm afraid you'll have to split up the long heredoc string into pieces to track down which part of it has the problem.