KornetNews wrote:
> <?
> class Refs {
> function scriptDir() {
> echo "Refs are Here\n";
> }
> }
>
> $ref = new Refs;
> $ref->scriptDir();
>
> ?>
>
>
>
Yes, having worked in Perl for several years, I keep tripping over this
one. You need the parens for a method.