> I have a script that receives certain data from an html form, processes > them, then submits the processed data to another script. Problem is, I > want it to do so without having to click anything anymore. It would
Where is the 'another script' ? within your site, or to other site ? If the other script is within you site, you may 'require' the other script, and just pass data by sub calling ? If that's external, you probrably want to use LWP::UserAgent. > have been easy if all the data it needs to submitted can be submitted as > regular parameters -- this way I can just do a redirect with the Any example for a reglar parameter you expected ? > key-value pairs included in the url. Unfortunately, one data is too > long so it has to be submitted as a hidden element. So unless I missed The data length is still the same whatever your passing way is hidden or visible. > something in my research, I cannot use redirect. How do you redirectly ? or does redirect nesassary ? Would you show some codes or show what you expect ? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>