On Thu, 15 Jun 2006, Chico wrote:

Attached is the entire program... Please take a look
and advise on any improvements.  I am just learning so
take it easy on me ;0)

The bug that's causing your error is this:

  &login;

That's calling the login subroutine, but not as a method.  So when you
do this:

  my $self = shift;

You get bupkis.  Instead:

  $self->login;

Also, use perltidy on your code!

-sam

---------------------------------------------------------------------
Web Archive:  http://www.mail-archive.com/[email protected]/
             http://marc.theaimsgroup.com/?l=cgiapp&r=1&w=2
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to