Any ideas why this won't output anything
<?php
class test
{
var $table = "matt";
function showName()
{
return $this->table;
}
}
echo test::showName();
?>
I have other classes along the similar lines but a lot bigger which work
fine.
I'm also using phplib which has a lot of this stuff going on...
I remeber seeing something regarding it in the manual but i don't get how
it's all worked before.
I'm using php4.06 apache 1.3.19 on win2k.
TIA
M:
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]