in reply to CGI type question involving arrays..
Hope this helps;-)#!/usr/bin/perl -w use strict; use CGI; my $query = new CGI; my @params = $query->param; foreach $param(@params) { $values = join '^', $query->param($param); # do what you want with the data here }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(Ovid - don't forget taint checking) RE(2): CGI type question involving arrays..
by Ovid (Cardinal) on Sep 26, 2000 at 21:45 UTC | |
|
RE: Re: CGI type question involving arrays..
by reyjrar (Hermit) on Sep 26, 2000 at 21:42 UTC |