On Tue, 2004-11-16 at 17:59, Robert Hostetter wrote:
> $workbook = $workbookStatic.createWorkbook($file);
Shouldn't this be
$workbookStatic->createWorkbook($file);
The . has a different meaning in PHP, the above code will cause PHP to
look for createWorkbook in the global scope and then append the result
to the object $workbookStatic.
Does this help?
Jost
|