Page 1 of 1

didn't recognize private vars in PHP Class

Posted: Sat Aug 19, 2006 4:09 am
by trigunmasteree
Yo,

I'm new in this stuff: OO PHP

When I tried to make class with PHP (with java style and XAMPP platform) it went well.

But when I moved my code right to the real hosting server, the problem happened.

The server didn't recognize internal variable in each class.

class Page
{
private var $loadLoginPad = true; //the part that is not recognized.
private var $loadSearchPad = true; //this too
..........................................
}

What should I do with this? can we still access class internal variables by just declaring it in the function scope? (not it the class scope)

I didn't expect to move my site, so anyone can help?

Posted: Sat Aug 19, 2006 4:20 am
by feyd
lose "var"

Posted: Sat Aug 19, 2006 9:28 am
by trigunmasteree
thx, I'll try it