session.php

include("database.php");

function addPOTW($subweek, $subtitle, $subcaption, $subsubmittedby)
{
    global $database, $form;
    /* Errors exist, have user correct them */
    if ($form->num_errors > 0) {
        return 1; // Errors with form
    }
    /* No errors, add the new POTW to the database */
    else {
        if ($database->addNewPOTW($subweek, $subtitle, $subcaption, $subsubmittedby, $subfile)) {
            return 0; //Event signup added succesfully
        } else {
            return 2; //Event signup attempt failed
        }
    }
}

This is my function, "addPOTW", located in the file session.php (with useless parts redacted). For some reason, I keep getting the error message: "Fatal error: Call to undefined method MySQLDB::addNewPOTW()" even though it's defined right here:

database.php

class MYSQLDB {
    function addNewPOTW($date, $title, $caption, $submitter, $filepath)
        {
            $q = "INSERT INTO `" . TBL_POTW . "` VALUES ('','$date','$title','$caption','$submitter','$filepath')";
            return mysql_query($q, $this->connection);
        }
}

I have other functions in session.php accessing functions in database.php using the $database variable in the exact same way, and they work perfectly fine. Any ideas why only this one function is being reported as undefined??

link|improve this question
Are you sure the version of database.php being used in the application is the same one you're looking at? – Phil Dec 22 '11 at 5:31
Also try var_dump($database) right before you call the method. – Francis Avila Dec 22 '11 at 5:32
Awww, global.. :( – N.B. Dec 22 '11 at 9:28
feedback

1 Answer

Because you are referring to $this, you would need to instantiate an object from that class and then call the method.

Something like this should get it working...

$database = new MYSQLDB;

Make sure you have it in scope before your addPOTW() function.

link|improve this answer
Can't use static as it makes use of $this – Phil Dec 22 '11 at 5:29
@Phil: Thanks, didn't notice that. Fixed. – alex Dec 22 '11 at 5:32
I believe the global (eww) $database is meant to be an instance of MYSQLDB. FYI, unless indicated by public, protected or private keyword, class methods (functions) are implicitly public – Phil Dec 22 '11 at 5:34
@Phil: Yeah, that's what I assumed. Everything public except noted otherwise is a relic from PHP4's OO implementation I believe. – alex Dec 22 '11 at 5:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.