in reply to PostgreSQL UPDATE

I don't like that you are looking at both $ENV{QUERY_STRING} and param. If this is a GET, then QUERY_STRING is gonna be ugly, not just the old_email. If this is a POST, then QUERY_STRING will be empty on compliant browsers, and it all shows up in params.

Time to redesign your calling interface.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re: Re: PostgreSQL UPDATE
by nlafferty (Scribe) on Jul 19, 2001 at 00:22 UTC
    hmm. What suggestions do you have for Replacing $ENV{QUERY_STRING} and param? What are the problems with using these?
      I need to understand your problem better. I need to know what question you were answering when you answered it "I have to use both a query string and a param", because that question is either ineffective, or the question that triggered an answer that triggered that question needs to be questioned. And there's your answer. {grin}

      -- Randal L. Schwartz, Perl hacker