class test{
var $abc = array("a","b","c");
function display(){
print_r $abc;// doesnt work
return true;
}
}
how do i go about accessing the array $abc inside the function display() other than defining it inside the function ?
EDIT : never mind, its print_r ($this->abc);
Thanks
reg
kevin