in reply to Multpile checkbox handling?
You are sending information from your form via POST and GET methods. Normally this will not work, so at least a portion of your information is being ignored, which could be your whole problem.
You don't describe how you are retrieving your data, but I would look into these two variables:
to see where your information is and how it is being delivered.$ENV{'CONTENT_LENGTH'} #normally used with POST method $ENV{'QUERY_STRING'} #normally used with GET method
But I would use CGI.pm ( you might also want to give -w and use strict a spin as well).
EEjack
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Multpile checkbox handling?
by Beatnik (Parson) on Apr 15, 2001 at 17:13 UTC |