hi,
how do i call a function from within a class. the function that I'm trying to call is a function defined in another file that I've included in this file.
example:
In file1.php
function call_me()
{
}
In file2.php
include('file1.php')
class caller
{
function foo()
{
call_me(); // this doesn't work, I get a fatal error when i do this.
}
}