Here is the code where i have problem..
<?php
class c_name
{
var $name;
var $entries = array();
function sample()
{
$this->entries[0]="aa";
$this->entries[1]="bb";
print "$this->entries[0],$this->entries[1]";
}
}
Here I am not getting the values of the entries array..