Jquery Elements Not Getting Passed To Perl Cgi December 13, 2023 Post a Comment I have a html pg which has got two forms and upon submit its calling a perl script. But in the script cgi param is not getting any values. Html code -- Solution 1: You HTML is seriously invalid. You have forms where forms are not allowed. Browser error recovery is likely to break them as it tries to generate a valid DOM. Use a validator. The name of a form control is used as the key in submitted data. You are trying to look it up by the id which isn't submitted. Share You may like these postsHow To Use Python/cgi For File UploadingHow Can I Send Error Message If User Doesn't Select A Radio Button Perl/cgiExecute A Cgi Each Time A Button Was Clicked Without Changing The Current Html PageWhy Is This Perl Cgi Script Failing To Upload Images Correctly? Post a Comment for "Jquery Elements Not Getting Passed To Perl Cgi"
Post a Comment for "Jquery Elements Not Getting Passed To Perl Cgi"