class themes {
var $abc[1]="test test";
}
why can't i do that? outside a class this variable declaration is possible...
ps: i use php3
in a class you have to declare the variable like so:
var $abc; var $abc = array();
then you can set the variable:
$this->abc = "test test";