
tfr at mysql
Jun 14, 2000, 12:56 PM
Post #2 of 2
(734 views)
Permalink
|
|
RE: Passing an array to a web form in EmbPerl?
[In reply to]
|
|
Hi, > I want to call a EmbPerl script something like this: > www.host.com/script?systems={field1,field2,field3}&otherparm=othervalue > so that I can access the systems array in my embperl script. you can do: www.host.com/script?system=field1&system=field2&system=field3 in this case you'll get a tab-separated list into $fdat{system} which you can easily spread into an array with split. Rgds, Tfr --==< tfr [at] mysql >==< MySQL development team >==< Thibodaux, LA / USA >==--
|