in reply to What does this mean?

It would be much easier to fix your problem with a larger code snippet.

Not a CODE reference at ... line 53, <DATA> line 1. if ($q->('lang') eq '' || $q->('lang') eq $bookinfo[1]) {
This looks like you're dereferencing $q and calling it as a subroutine call. What does $q contain? If it's a hash reference, then to get the 'lang' key out, you should do this instead:

$q->{'lang'}
Note the curly braces, instead of parentheses.

Alan

Replies are listed 'Best First'.
RE: Re: What does this mean?
by ferrency (Deacon) on Jul 18, 2000 at 22:14 UTC
    Oops- nevermind... I missed the part about "CGI.pm".