<snip>

> 
> What does "Bad name after question_19_date_one' " mean?  I 
> went thru the
> CGI code and the html code and the form names compare OK.  
> Perldoc does
> not have any entry on this topic unless I am looking for the wrong
> things.

I found this in internet land.

Bad name after %s::

(F) You started to name a symbol by using a package prefix, and then
didn't finish the symbol. In particular, you can't interpolate outside
of quotes, so 
    $var = 'myvar';
    $sym = mypack::$var;

is not the same as

    $var = 'myvar';
    $sym = "mypack::$var";

After reading this,  I found the following code at line 346:


 elsif ($query->param('question_18') eq 'Yes")

Note the double quote at the end vs. what should have been a single
quote.  I chnaged teh double with a single and the syntax check passes.

> 
> 
> Larry
> 

> 

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to