You could use CGI.pm.
use CGI qw/:standard/;
foreach my $name ( param ) {
# Skip everything except ID_# vars
next unless ( $name =~ /^ID_\d+$/ );
# Handle variable here
print "$name = ".param($name);
}
Is that what you were asking or did you want to pass the vars between pages?
If you need to pass them you can either drop them into hidden for fields, or
use some sort of session mgmt (like Apache::Session).
Rob
-----Original Message-----
From: Imtiaz ahmad [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 21, 2002 10:48 AM
To: [EMAIL PROTECTED]
Subject: Question -
Can someone please help me with the following:
I need to have variable names like ID_1, ID_2, ID_3 ...ID_n.
How can I read them on the next page after submitting through a FORM using
POST method?
thanks.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]