Gossamer Forum
Quote Reply
Using $IN->redirect
How would I go about passing all values from a form to another script?

Ex: A form has been submitted to plugin_one.cgi.
I want plugin_one just to pass all the form values to another script

Code:
sub plugin_one_handle {
# ------------------------------------------------------------------
# Determine what to do.
#

if ($IN->param('dest')) {

print $IN->redirect("$CFG->{db_cgi_url}/plugin_two.cgi?$IN");

}
}

I am not sure redirect is the correct way to go about it, but it seems it should be easy :-)

Thanks
Chris
RGB World, Inc. - Software & Web Development.
rgbworld.com
Subject Author Views Date
Thread Using $IN->redirect rgbworld 2306 Aug 10, 2006, 10:10 PM
Post Re: [rgbworld] Using $IN->redirect
tandat 2218 Aug 11, 2006, 2:14 AM