in reply to Can someone explain this error?

Please let us see the code, it's much easier to help then ...

Cheers

----------------------------------- --the good, the bad and the physi-- -----------------------------------

Replies are listed 'Best First'.
Re: Re: Can someone explain this error?
by wstarrs (Acolyte) on May 22, 2001 at 01:07 UTC
    Here is where I think the prob is:
    @key_array = keys %pers_dcr_files; my(@graphic) = (); my(@url) = (); for ($i=0; $i<2; $i++) { $key = $key_array[$i]; $graphic[$i] = $pers_dcr_files{$key}{SmallGraphic}; $url[$i] = $pers_dcr_files{$key}{LinkURL}; if (("$graphic[$i]" ne "") && ("$url[$i]" eq "")) { $name = generate_link_name($pers_dcr_files{$key}{RightNavL +aunchDate}, $pers_dcr_files{$key}{RightNavExpirationDate}, 'p', $pers +_dcr_files{$key}{PromotionName}); $url[$i] = generate_url_path($name); } }
    This basically trying to take the first two keys out of a hash and pass a few of the values from the specified key into another routine. I can include the two routines that are called as well if you would like.

      Which is line 16?

        Actually the message said (eval 15) line 16, and I had no idea how to interpret that, but the code I gave you was part of the new fuctionality that I put in, so the problem is either there or in one of the two routines called from there...