Forum Moderators: phranque
If the moderator wishes to move this post to another forum, I'd like to request that you copy it there instead of moving it entirely. I'm really at wits' end trying to find a solution.
Thanks to any and all who look into this problem.
#!C:\perl\bin\perl -w
use CGI;
use strict;
#$¦ = 1;
my $query = new CGI;
print $query->header("text/html");
print "<html><body>\n";
#print out the text fields that were submitted via the form.
for my $val ($query->param)
{
my $ct = 1;
print "<BR>submitted $val: ";
foreach ($query->param($val))
{
print "<BR>$ct [" . $query->param($val) . "]\n";
$ct += 1;
}
}print "<form name=frmSize method=Post>\n";
#Create 200 text fields
for (my $i = 0; $i < 200; $i++)
{
#Create a text field with 100 bytes of data
print "<BR>input box $i:<input type=text size=110 name=\"x\" value=\"0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789\">\n";
}
print "<BR><input type=submit></form>\n";
print "</body></html>\n";
exit 0;
Well, if you do plan on posting in another forum, you should probably try posting your problem in the Perl CGI forum [webmasterworld.com].