Hi Eric --

> It looks like there's a function in CGI.pm called rearrange() that
> moves the parameters around, and that's where the problem seems to
> be.

The $CGI::Application->param() method is completely unrelated to the
$CGI->param() method, other than the fact that they are named the same, and
they perform somewhat similar functions.  I would take a careful look at
your code and verify that you are actually using the correct object for your
various calls.

If you want to verify that the system works, run this code:

    use CGI::Application;
    my $a = CGI::Application->new();
    $a->param('somekey' => 'someval');
    print "Stored value: '" . $a->param('somekey') . "'\n";


If your output shows "someval", then CGI-App is working properly.


TTYL,

-Jesse-


----

  Jesse Erlbaum, CTO
  Vanguard Media
  212.242.5317 x115
  [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to