How do I fill this structure with the variables passed from a web page...
Robert (robert@chalmers.com.au)
Thu, 18 Jan 2001 14:43:38 +1000
If I have this structure, and the items are hardcoded like this, how do I
make it so that variables that are passed to it from a web page form are put
there instead?
............................
#create request
my $req = (POST 'item_1',
[ secParams => 'item_2',
referenceID => 'item_3',
]);
....................................
Is it possible looks like this
............................................
ReadParse();
#create request
my $req = (POST '$in{item_1}',
[ secParams => '$in{item_2}',
referenceID => '$in{item_3}',
]);
.........................................
I'm having trouble trying to find the right syntax....
Thanks for any help,
Robert