in reply to Re: Re: Passing Data
in thread Passing Data

It's hard to sort this out without seeing all the code but at a guess I would first look at where you have this in the first script
hidden( -name => "item_id", -override => 1, -default => escapeHTML( $ref->{item_id} )),
and this is the secomd
hidden( -name => "item_id", -override => 1, -default => escapeHTML( $item_id )),
and in particular, check the scope of $item_id
poj

Replies are listed 'Best First'.
Re: Re: Re: Re: Passing Data
by b310 (Scribe) on Jan 28, 2003 at 21:18 UTC
    Hi, You can view my scratchpad for the whole code. Thanks.