Mike Friedman wrote:
On 10/19/06, Robert Hicks <[EMAIL PROTECTED]> wrote:


     if ($new_task_name) {
         $sth1->$self->dbh->prepare("



That should be:

if ($new_task_name) {
   my $sth1 = $self->dbh->prepare( ...


As you have it, you're trying to use the strinigified version of $self as a
method to be called on $sth1, which is undefined.



Mike


Crud, do you have any idea how many times I have stared at that line of code! lol

Robert


---------------------------------------------------------------------
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