in reply to form problem...

Hello,

What you want to do is collect any previous movie selections
and pass them on to the form through hidden fields.

Something like this:

my $hidden_fields; $hidden_fields .= $cgi->hidden( $_, $in{$_} ) for ( grep { /dvdX/ } ke +ys %in );
Where %in is your hash if form vars retrieved from CGI->Vars.
Just print out the list of hidden fields as part of your form everytime.

Best Regards,
Wonko

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.