i have a class in php. but when i declare the class private i got an error, when i remove it it does work. do have to adjust some easyphp settings in order ot do oop in php?
thnks
code
class HtmlForm
{
private var $name;
public HtmlForm($name)
{
$this->name = $name;
}
}
i get an error telling that it is expecting a T_VAR not TVARIABLE… what does it mean?